How to solve this error?
1 回表示 (過去 30 日間)
古いコメントを表示
採用された回答
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
A(5) % no error
A(end) % no error
A(6) % error, there is no sixth element and index should not exceed 5.
So, check your code for dimensions of the array from which you are accessing the elements.
その他の回答 (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!