Index exceeds matrix dimensions. Error in HW2 (line 82) CL(i) = a(i)*(AOA(i) - alp0);

1 view (last 30 days)
I am trying to create a plot with multiple varying functions but i keep getting the error that the index exceeds the matrix dimensions.

Accepted Answer

Walter Roberson
Walter Roberson on 20 Jan 2018
Your for 1:1:10 initializes a(1) to a(10). The loop after that is to length(k) which is 33 so it tries to use a(1) to a(33) but a(11) onwards does not exist
  4 Comments

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!