如何在Matlab中连接矩阵

时间:2011-03-27 20:04:45

标签: matlab

我在Matlab中有n个dxd矩阵,我想将它们连接起来得到一个dxdxn矩阵,其中(:,:,i)是第i个矩阵(i = 1..n)。我怎么能这样做?

1 个答案:

答案 0 :(得分:7)

使用CAT

out = cat(3,mat1,mat2,mat3,...,matN);

如果数组是单元格数组的元素,

out = cat(3,cellArray{:});