Error using reshape Number of elements must not change. Use [] as one of the size inputs to automatically calculate the appropriate size for that dimension.
8 次查看(过去 30 天)
显示 更早的评论
Hi,
I have the following code inside of a function:
x = exp(xi);
sz = size(x, 1)-255;
a = reshape(x(1:sz-1,:), [255 256]);
b = x(sz:end, :);
I am using a minimisation function on this function which throws the following error.
Error using reshape
Number of elements must not change. Use [] as one of the size inputs to automatically calculate the appropriate
size for that dimension.
Error in minimize (line 75)
[f0 df0] = feval(f, X, varargin{:}); % get function value and gradient
I would appreciate any ideas as to why this error might be occuring. Thanks! :)
0 个评论
回答(1 个)
Walter Roberson
2022-3-1
sz = size(x, 1)-255;
a = reshape(x(1:sz-1,:), [255 256]);
So x(1:sz-1,:) would get all except the last 256 rows of x . And then you reshape that to 255 by 256. that is only going to work if the original data was 511 x 256 or certain other "magic" size combinations.
The reason to use things like size(x,1) are to permit flexibility in the size of the array x. But your reshape() is coded in a way that provides no flexibility: it demands that the data be exactly a certain number of elements, which contradicts the request for general size handling gained by asking size()
4 个评论
Walter Roberson
2022-3-2
If you want the remaining to have 255*256 elements after you took away 256 then it follows that the original should have 255*256 + 1*256 = 256*256 elements, which is 65536
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!