Index in position 2 exceeds array bounds
조회 수: 3 (최근 30일)
이전 댓글 표시
I got this error, what does it mean and how can i fix it?
"Index in position 2 exceeds array bounds (must not exceed 2)."
this is the code of the line:
I(temp,:) = [zeros(1,temp-2) -1/(mul*Capacitance(1,temp-1)) 1/(mul*Capacitance(1,temp-1))+1/(mul*Capacitance(1,temp))+mul*inductance(1,temp) -1/(mul*Capacitance(1,temp)) zeros(1,length(inductance)-1-temp)];
댓글 수: 3
Nora Khaled
2020년 11월 24일
Its hard to tell exactly without the rest of the code... but this error happen when you try to access an element in a vector by using wrong indices.
In this case it seems you have a vector with only 2 columns... maybe 'Capacitance' or 'inductance' and temp exceeded 2.
답변 (1개)
Voss
2020년 11월 24일
This means that the code is attempting to refer to an index of some variable, but the variable is not large enough in that dimension. In this case the dimension is the second dimension ("index in position 2") and the maximum index you can reference is 2 ("(must not exceed 2)").
So basically Capacitance and/or inductance has two columns, but the code is trying to access the third or higher column, which doesn't exist.
참고 항목
카테고리
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!