Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How can I solve this problem ?

1 vue (au cours des 30 derniers jours)
Giuseppe Napoli
Giuseppe Napoli le 28 Fév 2017
Clôturé : MATLAB Answer Bot le 20 Août 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 commentaire
Adam
Adam le 28 Fév 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.

Réponses (2)

Jan
Jan le 28 Fév 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 le 28 Fév 2017
One possible solution is to change the for call from:
for j = 2 : ncA
to:
for j = 2 : ncA-1

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by