How to fix: Index exceeds matrix dimensions

조회 수: 1 (최근 30일)
Chun Yong Koh
Chun Yong Koh 2019년 8월 23일
댓글: Chun Yong Koh 2019년 8월 24일
Hi,
I am new to matlab and am trying to write a function which produces the Fibonacci sequence of input n. I am required to write it in a way so that the program returns all Fibonacci numbers which are less than 3000, including the index of the highest term below 3000. However, I kept getting the error ( Index exceeds matrix dimensions ) at where the if loops is located. May i know how I can change it to make it work?
function y=fibonacci(n)
y(1)=1;
y(2)=1;
for i=3:n
y(i) = y(i-1)+y(i-2);
i=i+1; %#ok<*FXSET>
if y(i) > 3000
disp(i-1);
break
end
end

답변 (1개)

Torsten
Torsten 2019년 8월 23일
The for-loop increases i automatically. Thus remove the line "i=i+1".
  댓글 수: 1
Chun Yong Koh
Chun Yong Koh 2019년 8월 24일
Really new to this but thanks for the help!

댓글을 달려면 로그인하십시오.

카테고리

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