我有一个名为3600*140*140
theMat
矩阵
我的功能适用于N*N
矩阵,让它被称为Foo
我尝试发送它,但我看到了:
size(theMat(23,:,:))
时
[1,140,140]
我希望它是
[140,140]
答案 0 :(得分:4)
使用squeeze()
:
size(squeeze(theMat(23,:,:)))
[140 140]
答案 1 :(得分:1)
您也可以尝试
test(:,:)=theMat(23,:,:);