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