up previous next
ConcatVerList    --    create a simple block matrix


Syntax
ConcatVerList(L: LIST of MAT): MAT

where the matrices in L have the same number of columns

Description
This function creates a vertically stacked block matrix. The entries in the list are matrices with the same number of columns. ConcatVerList(L) will return a matrix of the form
                | L[1] |
                | L[2] |
                |  ..  |


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

See Also