How to solve this error?

조회 수: 2 (최근 30일)
Akash Pal
Akash Pal 2022년 5월 12일
댓글: Akash Pal 2022년 5월 12일
Index in position 1 exceeds array bounds (must not exceed 17).
Everytime i am going to run my program i am getting this error ..How to solve it ?

채택된 답변

KSSV
KSSV 2022년 5월 12일
The error is clear. It seems you have an array of size 1x17 and you are trying to extract elements more than present in it.
% Example
A = rand(1,5) ; % aarray of size 1x5. It has only five elements
A(1) % no error
ans = 0.9122
A(5) % no error
ans = 0.0632
A(end) % no error
ans = 0.0632
A(6) % error, there is no sixth element and index should not exceed 5.
Index exceeds the number of array elements. Index must not exceed 5.
So, check your code for dimensions of the array from which you are accessing the elements.
  댓글 수: 1
Akash Pal
Akash Pal 2022년 5월 12일
Ok thank you so much .

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by