Index exceeds matrix dimensions det
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
D is matrix right? why det(D) not work someone help me
0 comentarios
Respuestas (2)
  Jan
      
      
 el 14 de Dic. de 2017
        
      Editada: Jan
      
      
 el 14 de Dic. de 2017
  
      You have provided very few information, such that the readers have to guess. My idea:
You have defined "det" as a variable before:
X = randi([1, 100], [3, 3]);
det(X);
...
det = ones(2, 2);
det(X)   % Indices out of range
Check this by typing into the command window:
dbstop if error
Then run the code again and when it stops, check what "det" is:
which det -all
If this is the problem, the solution is easy: Do not shadow built-in functions by local variables.
0 comentarios
Ver también
Categorías
				Más información sobre Linear Algebra 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!


