Why am I getting the error message "??? Assignment has more non-singleton rhs dimensions than non-singleton subscripts"?
    10 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    MathWorks Support Team
    
 el 1 de Mayo de 2017
  
    
    
    
    
    Respondida: MathWorks Support Team
    
 el 1 de Mayo de 2017
            I do not understand the following error message:
Error Messages: ??? Assignment has more non-singleton rhs dimensions than non-singleton subscripts
Respuesta aceptada
  MathWorks Support Team
    
 el 1 de Mayo de 2017
        This error is a result of incorrect indexing of multidimensional arrays.
For example, you can reproduce the same error message to execute the following command.
>> a = zeros(3,3,3); % difine 3x3x3 size variable 
>> a(3,3,2) = randn(1,2); % assign 1x2 size values
Assignment has more non-singleton rhs dimensions than non-singleton subscripts
To workaround, please check the size of variable you would like to assign.
0 comentarios
Más respuestas (0)
Ver también
Categorías
				Más información sobre Matrix Indexing 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!
