필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

create function that displays fibonacci series

조회 수: 1 (최근 30일)
Rachel Dawn
Rachel Dawn 2018년 2월 14일
마감: Birdman 2018년 2월 14일
So, I have four goals here: the user will input the first two numbers of fibonacci series, and the length of the series (n). Fourth goal: function will output 'n' numbers of the Fibonacci series (starting at the two numbers that the user entered).
I've been at this for two hours (youtube videos and all), yet all I've been able to come up with is this:
function FibLength = myFibonacci(n)
if n==0||n==1
FibLength= n;
else
FibLength= myFibonacci(n-2)+myFibonacci(n-1)
end
Which , by the way, just prints out the 'nth' number of the Fibonacci series. Can someone guide me here please?

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by