horzcat
📝 Syntax
📥 Input argument
📤 Output argument
📄 Description
💡 Examples
🔗 See also
🕔 History
Version
📄 Description
Last updated
Last updated
A = eye(2, 2);
B = ones(2, 2);
C = horzcat(A, B)
D = [A, B]A = 'nel';
B = 'son';
C = horzcat(A, B)