error in the programming

1 view (last 30 days)
vimal kumar chawda
vimal kumar chawda on 28 May 2019
Answered: madhan ravi on 29 May 2019
Hallo
I have one error in the code and error is as below:
Index exceeds the number of array elements (232).
Error in SynchroTracking (line 76)
t_latency = ( false_Y(index_r) - false_Y(index_f) ) ./ ( 2 .* v(index_f) .* cos_a(index_f) .*
sin(alpha(index_f)) .* sin(zeta(index_f)));
Can anyone help me to understand the code error line?
Thank you
Kind regards,
Vimal

Answers (1)

madhan ravi
madhan ravi on 29 May 2019
It means you’re trying to access an element which doesn’t even exist. For example:
x=1:5;
x(6) % 6 th element doesn’t exist

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!