Index exceeds matrix dimensions error when attempt to create a recursion
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi, I am trying to create a recursion using this code but get 'Index exceeds matrix dimensions' error. What does it means and how do I correct the code?
Thank you
numlay=input('Number of layers= ');
phi(1)=30;
for m=[1:numlay]
n(m)=input('Insert Re(n) =');
phiR(m+1)=Snells(n(m),n(m+1),phi(m));
end
댓글 수: 0
답변 (1개)
Sudarshan Kolar
2017년 4월 24일
Hello Faris,
I understand that you are getting index exceeds matrix dimension error. This is because the variable 'phi' is a scalar (only one value) and in the loop you are trying to access phi(m), where m = 1:numlay.
You will get this error whenever you access an out of bound element from an array.
Hope that helps.
Sudarshan
댓글 수: 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!