To RESHAPE the number of elements must not change.

6 次查看(过去 30 天)
rows = 450;
cols = 450;
samples = 1024;
samples = size(data2d,2);
Data = reshape(data2d,cols,rows,samples);
Data = flip(Data,1);
I have the data2d of 168921*1024
It gives me reshape error ??
  1 个评论
Rik
Rik 2019-8-21
You are asking Matlab to put 172975104 elements in an array with 207360000 elements. What do you want to happen?

请先登录,再进行评论。

采纳的回答

Guillaume
Guillaume 2019-8-21
Well, yes as the error message says, the number of elements must no change. You tell us that currently data2 has 168921 (* 1024) elements and want to reshape to 450*450 (* 1024) = 202500 (* 1024) elements. 202500 is not equal to 168921, so indeed you can't reshape.
You need to choose a different shape or change your input so that it has the same numbers of element as your desired shape.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

产品


版本

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by