index exceed matrix dimension error

1 view (last 30 days)
how to solve this? if m{7}== 0 m{7}= 0.000000001; else m{7} = m{7}; end since i get error "index exceed matrix dimension"

Accepted Answer

Fangjun Jiang
Fangjun Jiang on 18 Dec 2011
You have less than 7 cells in your variable m. Do the following to understand the error.
>> clear m; m=cell(6,1);m{7}
??? Index exceeds matrix dimensions.
  2 Comments
srycandy
srycandy on 18 Dec 2011
how to call the 7th cell only?
Fangjun Jiang
Fangjun Jiang on 18 Dec 2011
The problem is that you don't have the 7th cell. Check the size of m using size(m)

Sign in to comment.

More Answers (0)

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!