How about matlab size function ?
    1 visualización (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    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
[M,N] = size(a)
b = rand(size(a))
0 comentarios
Respuesta aceptada
  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)
Try this instead:
        function varargout = size(obj,varargin)
            [varargout{1:nargout}] = builtin('size', obj.s, varargin{:}); % call builtin size function
        end
6 comentarios
  Voss
      
      
 el 5 de Mzo. de 2023
				@Mohamed Gharbi: Please click the "Accept This Answer" button on Matt J's answer.
Más respuestas (0)
Ver también
Categorías
				Más información sobre Logical en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


