<< gt | Operators | ismember >> |
R = horzcat(M1, M2, ... , MN) |
R = [M1, M2, ... , MN] |
a variable
a variable
a variable
result of [M1, M2, ... , MN]
R = horzcat(M1, M2, ... , MN) returns the horizontal concatenation of M1, M2, ... , MN along the dimension 2.
A = eye(2, 2);
B = ones(2, 2);
C = horzcat(A, B)
D = [A, B]
A = 'nel';
B = 'son';
C = horzcat(A, B)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET