Index exceeds the number of array elements (1).

474 ビュー (過去 30 日間)
Ioannis Vourvachakis
Ioannis Vourvachakis 2021 年 10 月 14 日
コメント済み: Ioannis Vourvachakis 2021 年 10 月 14 日
I ran a file, but an error appears in the follownig line:
Refset=sol(iii(1:first_members),:);
with the message: Index exceeds the number of array elements (1).
What does it mean? Thank you.
  2 件のコメント
Mathieu NOE
Mathieu NOE 2021 年 10 月 14 日
hello
go in debug mode and test the dimension of your data
  • check size of iii vs first_members
  • check size of sol vs iii(1:first_members)
Ioannis Vourvachakis
Ioannis Vourvachakis 2021 年 10 月 14 日
thank you very much

サインインしてコメントする。

回答 (1 件)

Cris LaPierre
Cris LaPierre 2021 年 10 月 14 日
The error means you are trying to index a vector/array element that does not exist in your variable. Specifically, your error message is telling you your array has a single element, and your index is >1.
% Works
A = 27;
A(1)
ans = 27
% doesn't work
A(2)
Index exceeds the number of array elements. Index must not exceed 1.
  1 件のコメント
Ioannis Vourvachakis
Ioannis Vourvachakis 2021 年 10 月 14 日
thank you very much

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by