function nFib = fib(n)
a = (1 + sqrt(sym(5)))/2;
nFib = (a^n)-((-a)^(-n)) / sqrt(sym(5)) ;
end
*The output for this function when n=3 is
fib(3)
ans =
5^(1/2)/(5*(5^(1/2)/2 + 1/2)^3) + (5^(1/2)/2 + 1/2)^3
Why isn't the answer showing the number but just the entire function itself? And how can I solve this problem to show the actual answer(in number)? Thank you!

 채택된 답변

Andrei Bobrov
Andrei Bobrov 2016년 8월 30일

0 개 추천

function nFib = fib(n)
a = (1 + sqrt(5))/2;
nFib = a^n-(-a)^(-n) / sqrt(5) ;
end

댓글 수: 2

Danny C
Danny C 2016년 8월 30일
Now it's working. Would you mind telling me what was wrong in my function?
Andrei Bobrov
Andrei Bobrov 2016년 8월 30일
I replaced the symbolic expression (sym(5)) to a value of integer 5.

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

추가 답변 (0개)

제품

질문:

2016년 8월 30일

편집:

2016년 9월 2일

Community Treasure Hunt

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

Start Hunting!

Translated by