"index exceeds matrix dimensions"

I can't figure out why it is showing me this, here are the lines of relevant code, thanks for any help you might have

 Accepted Answer

Birdman
Birdman on 12 Dec 2017
Edited: Birdman on 12 Dec 2017
The length of x vector is 3 and you defined y vector the same vay but at the line 21 when i=4, you try to reach y(4), which is invalid because you already defined that y has 3 elements at the line 11. Check it.

2 Comments

ok, so I changed it to y=zeros(1,3), but I'm getting the same message, if I defined the index as i=1:3, shouldn't it stop at y(3)?
No, but at line 21, you still try to reach i+1, which makes 4 when i=3. The error arises from there.

Sign in to comment.

More Answers (0)

Asked:

on 12 Dec 2017

Commented:

on 12 Dec 2017

Community Treasure Hunt

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

Start Hunting!