Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

How can I solve this problem ?

1 view (last 30 days)
Giuseppe Napoli
Giuseppe Napoli on 28 Feb 2017
Closed: MATLAB Answer Bot on 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 Comment
Adam
Adam on 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.

Answers (2)

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

This question is closed.

Community Treasure Hunt

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

Start Hunting!