| ConcatVerList |
| Syntax |
ConcatVerList(L: LIST of MAT): MAT where the matrices in L have the same number of columns |
| Description |
| 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 |