Borrar filtros
Borrar filtros

How about matlab size function ?

4 visualizaciones (últimos 30 días)
Mohamed Gharbi
Mohamed Gharbi el 4 de Mzo. de 2023
Comentada: Voss el 5 de Mzo. de 2023
Why is the size of matrix b different from the size of matrix a?
Please, any suggestions? How to fix it
________________________
a = testSizeFunction
a =
1×1 testSizeFunction array with properties: s: [2×3 double]
[M,N] = size(a)
M = 2
N = 3
b = rand(size(a))
b = 2×2
0.5167 0.2590 0.8186 0.9810

Respuesta aceptada

Matt J
Matt J el 4 de Mzo. de 2023
Editada: Matt J el 4 de Mzo. de 2023
You have not overloaded the size method appropriately for the case where nargout=1:
a = testSizeFunction;
siz=size(a)
siz = 2
Try this instead:
function varargout = size(obj,varargin)
[varargout{1:nargout}] = builtin('size', obj.s, varargin{:}); % call builtin size function
end
  6 comentarios
Mohamed Gharbi
Mohamed Gharbi el 5 de Mzo. de 2023
Okay. It works well.
Voss
Voss el 5 de Mzo. de 2023
@Mohamed Gharbi: Please click the "Accept This Answer" button on Matt J's answer.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Operating on Diagonal Matrices en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by