1.

Which code will help to concatenate two matrices easily in 2 dimensions?

A. cat(A,B)
B. cat(2,[1 2;3 4], [1 2; 3 4])
C. cat(2;[1 2,3 4]; [1 2, 3 4])
D. cat([1 2;3 4], [1 2; 3 4])View Answer
Answer» C. cat(2;[1 2,3 4]; [1 2, 3 4])


Discussion

No Comment Found