Index exceeds the number of array elements (210)

3 views (last 30 days)
Hi Matlab Community,
When I run my code I get an error "Index exceeds the number of array elements (210)".
I usually know what that means but what does the (210) mean?
Here's the exact line where the error occurs:
E(i)=-A(i)-B(i)-C(i)-D(i)-F(i)-G(i)-H(i)-I(i)-(phi*ct(i,t)*dy*dx*dz/dt);
Thanks in advance...

Accepted Answer

Cris LaPierre
Cris LaPierre on 13 Aug 2020
Edited: Cris LaPierre on 13 Aug 2020
The (210) indicates the variable you have tried to index contains 210 elements.
Check your values of i and t, and the number of elements (numel) in A, B, C, D, E, F, G, H, I, and ct.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!