- check size of iii vs first_members
- check size of sol vs iii(1:first_members)
Index exceeds the number of array elements (1).
97 次查看(过去 30 天)
显示 更早的评论
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.
3 个评论
Pitchai
2025-8-22
I run the circuit inmatlab , the error will come this type please help me to clear the error "Index exceeds the number of array elements. Index must not exceed 17"
回答(1 个)
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)
% doesn't work
A(2)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!