필터 지우기
필터 지우기

Index exceeds matrix dimensions error when attempt to create a recursion

조회 수: 3 (최근 30일)
Faris Shahin
Faris Shahin 2017년 4월 20일
답변: Sudarshan Kolar 2017년 4월 24일
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

답변 (1개)

Sudarshan Kolar
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

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by