我正在尝试X
1000x60x5
通过向量对矩阵进行相关分析Y
1000x1
。使用代码:
for g=1:size(X,1)
for h=1:size(X,2)
C = corr(X(g,h,:),Y,'rows','complete','Type','Spearman');
end
end
不幸的是,我不断收到错误消息:
??? Error using ==> corr at 103
X and Y must have the same number of rows.
尽管它们都有 1000 行。我不明白为什么会这样。