TEMP = taux(LAT < 0 & LAT > -9 & LON < 90 & LON > 70,timeIndex);
输出这个奇妙的错误:
Index exceeds matrix dimensions.
taux is 360x160x192.
LAT 是160x360,LON也是。timeIndex 是192x1(例如,它是时间在 1998 年到 1999 年之间的值的索引)
即使我反转矩阵或尝试以下操作,错误仍然存在。
TEMP = taux((LAT < 0 & LAT > -9 & LON < 90 & LON > 70)',timeIndex)
或者
TEMP = taux(LAT < 0 & LAT > -9 & LON < 90 & LON > 70,LAT < 0 & LAT > -9 & LON < 90 & LON > 70,timeIndex);