MatConcatVer |
Syntax |
MatConcatVer(A:LIST,MAT, B:LIST,MAT):MAT where A and B have the same number of columns |
Description |
| A | | B |
Example |
A := [[1,2,3], [4,5,6]]; B := [[101,102,103]]; MatConcatVer(A,B); Mat([ [1, 2, 3], [4, 5, 6], [101, 102, 103] ]) ------------------------------- |
See Also |