How about matlab size function ?
5 views (last 30 days)
Show older comments
Why is the size of matrix b different from the size of matrix a?
Please, any suggestions? How to fix it
________________________
a = testSizeFunction
[M,N] = size(a)
b = rand(size(a))
0 Comments
Accepted Answer
Matt J
on 4 Mar 2023
Edited: Matt J
on 4 Mar 2023
You have not overloaded the size method appropriately for the case where nargout=1:
a = testSizeFunction;
siz=size(a)
Try this instead:
function varargout = size(obj,varargin)
[varargout{1:nargout}] = builtin('size', obj.s, varargin{:}); % call builtin size function
end
6 Comments
Voss
on 5 Mar 2023
@Mohamed Gharbi: Please click the "Accept This Answer" button on Matt J's answer.
More Answers (0)
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!