Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How can I solve this problem ?

1 Ansicht (letzte 30 Tage)
Giuseppe Napoli
Giuseppe Napoli am 28 Feb. 2017
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
Hello to everyone. I need help with the attached code. Why Matlab tell me : " Index exceeds matrix dimensions. Error in Texture_tris (line 186) , phi2A(j+1) = phi2A(j+1) + dnA; "
I wrote some other programs with the same script and that one never gave me an error? How this can be possible ? Thanks in advance.
  1 Kommentar
Adam
Adam am 28 Feb. 2017
Use
dbstop if error
and just look on command line at the size of the array and the index you are giving to it and you will find the problem. Just looking at a mass of code it is very difficult for us to pinpoint this error. Debugging is the way to do this - the error message is very clear as to what the problem is. What the cause of it is you would know best once you find the problem since it is your code.

Antworten (2)

Jan
Jan am 28 Feb. 2017
The error message means, that "phi2A(j+1)" tries to access a not existing element. For the current value of j, there is no j+1 'th element. Use the debugger as mentioned by Adam to examine the problem.

Star Strider
Star Strider am 28 Feb. 2017
One possible solution is to change the for call from:
for j = 2 : ncA
to:
for j = 2 : ncA-1

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by