up previous next
ConcatVer    --    create a simple block matrix


Syntax
ConcatVer(A: MAT, B: MAT): MAT

where A and B have the same number of columns

Description
This function creates a vertically stacked block matrix. The two entries are matrices with the same number of columns. ConcatVer(A, B) will return a matrix of the form
                | A |
                | B |


Example
/**/  A := mat([[1,2,3], [4,5,6]]);
/**/  B := mat([[11,12,13]]);
/**/  ConcatVer(A, B);
matrix(QQ,
 [[1,  2,  3],
  [4,  5,  6],
  [11, 12, 13]])

See Also