in a function my answer is 'S=-102'. after that further more i cannot take answers , it give error massage saying
조회 수: 1 (최근 30일)
이전 댓글 표시
answer ==== S=-102 ''Attempted to access (-102); index must be a positive integer or logical.'' why is this and what is the solution for this.
댓글 수: 1
Geoff Hayes
2016년 10월 4일
shashika - given the error message, it sounds like you are trying to use S (which is negative) as an index into array. Perhaps something like
someArray(S)
As the error message states, the index must be a positive integer or logical. Your S is negative so using this value to access an element in an array does not make sense. You need either to guard against using a negative index or ensure that the code which initializes S only does so with valid positive integers.
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!