bsxfun(@times,RegressIndexFlux.(IndexNames{i}).(FluxNames{j}), Indices.(IndexNames{i}));
所以我的代码在上面。
bsxfun 的问题是我收到以下错误消息:
Error using bsxfun
Non-singleton dimensions of
the two input arrays must
match each other.
所以这里的问题是:如果可能的话,有没有办法让我通过时间序列转换 180x360 数组而不必使用 for 循环?(我在这里使用了许多 180x360 数组的结构)。基本上RegressIndexFlux
是针对时间序列回归的Indices
,我试图通过仅使用回归来重建时间序列。