joinright(a,b)

Augments matrix a by adding the columns of matrix b to its right.


See also joinbottom submatrix 


Example


a = ( 2, 3 ; 1, -1 );

b = ( 5 ; -5 );

joinright(a,b)

 2  3  5

 1 -1 -5