2

Suppose I have two matrices A and B that are 3d. A = 49x49x18 B = 49x49x24 After concatenation I want to see the C = 49x49x42 as the concatenation of A and B at the third dimension.

How would I do that at matlab ?

4

1 に答える 1

9

次元 3 を指定するcat関数を使用する

C = cat(3, A, B)
于 2013-03-20T09:02:57.023 に答える