Error in App Designer with Slider: 'Index Exceeds Array Bounds'

조회 수: 1 (최근 30일)
Emma Peek
Emma Peek 2019년 4월 12일
댓글: Emma Peek 2019년 4월 12일
Hi- I have been trying to create an app that will plot one column of a table I have loaded in App Designer using a slider. Each x value corresponds to a cell, and each y value corresponds to a characteristic about that cell. I am hoping to use the slider to specify individual cells to plot one at a time. However, every time I try to plot it using the slider, I get the same error: Index Exceeds Array Bounds. I am not sure what I am doing wrong.

채택된 답변

TADA
TADA 2019년 4월 12일
without the full code it's hard to say, and in general uploading screenshots of your code is not very helpful.
Still, the problem is most likely because you're trying to index that array (what ever it is) with a character:
x = 1:10;
x('4');
Index exceeds matrix dimensions.
to understand the root of this error, you need to understand indexing and type conversions
what you did is to index the array with the character 4 which is converted to a number before indexing:
i = double('4')
i =
52
I guess that the array you are trying to index has less than 52 items, and thats were the error comes from
  댓글 수: 1
Emma Peek
Emma Peek 2019년 4월 12일
Thank you for your help - that makes sense. Sorry about the screenshots.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by