MATLAB发送矩阵部分作为整体矩阵

时间:2015-08-23 13:06:51

标签: matlab

我有一个名为3600*140*140

theMat矩阵

我的功能适用于N*N矩阵,让它被称为Foo

我尝试发送它,但我看到了:

size(theMat(23,:,:))

[1,140,140]

我希望它是

[140,140]

2 个答案:

答案 0 :(得分:4)

使用squeeze()

size(squeeze(theMat(23,:,:)))
[140 140]

答案 1 :(得分:1)

您也可以尝试

test(:,:)=theMat(23,:,:);