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 simple block matrix. The entries in the list are matrices with the same number of columns. ConcatVer(L) will return a matrix of the form
                | L[1] |
                | L[2] |
                |  ..  |


Example
/**/  L := [ mat([[1,2,3], [4,5,6]]), mat([[101,102,103]]) ];
/**/  ConcatVerList(L);
matrix(QQ,
 [[1, 2, 3],
  [4, 5, 6],
  [101, 102, 103]])

See Also