Error "INDEX EXCEEDS MATRIX DIMENSION"
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi all,
what does this error indicate while woring with the blkproc() function in MATLAB
error is "INDEX EXCEEDS MATRIX DIMENSION"
Thanks
채택된 답변
Walter Roberson
2012년 3월 7일
It means you tried to access an array at an index that is too large to fit in the array.
For example,
m = magic(4);
would be a 4 x 4 array, so (for example) m(2,3) and m(:,4) are valid indexes for m. But if I tried to index m(1,5) then I would be trying to access a column that does not exist in the array.
추가 답변 (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!