joinbottom(a,b)

Augments matrix a by adding the rows of matrix b to its bottom.


See also joinright submatrix 


Example


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

b = ( 5 , -5 );

joinbottom(a,b)

 2  3

 1 -1

 5 -5