こんにちは私は次のコードを持っています
A = squeeze(hourly_surplus(1,1,1,:));
B = reshape(A,365,24);
サイズ(A) = 8760 x 1
ただし、エラーが発生します
Error using reshape
To RESHAPE the number of elements must not change
このエラーは「B」の行に表示されますが、A には 8760 個の要素があり、B = 365 x 24 も 8760 であると思います。何が問題なのですか?
ありがとう