MTM
vertcat
vertical concatenation of Arrays
Calling Sequence
Parameters
Description
Examples
vertcat(M1,M2,...)
Mi
-
Array
The vertcat(M1,M2) function creates a new array with the rows of M1 on top of the rows of M2.
All input arrays must have the same number of columns and dimensions.
with⁡MTM:
M1≔Matrix⁡3,2,fill=1:
M2≔Matrix⁡2,2,fill=2:
vertcat⁡M1,M2
1111112222
See Also
ArrayTools[Concatenate]
MTM[horzcat]
Download Help Document