How to write an if-else statement for a function

조회 수: 90 (최근 30일)
Sofie Önnemar
Sofie Önnemar 2022년 8월 30일
편집: Torsten 2022년 8월 30일
The function is:
f(n) = sqrt(1 + f(n-1)) if n>1 and f=2 if n=1
but I don't know how to start even.
  댓글 수: 1
Sofie Önnemar
Sofie Önnemar 2022년 8월 30일
편집: Walter Roberson 2022년 8월 30일
for n=
if n>1
f=sqrt(1+(n-1));
else
f=2;
end
end
this is what I got, but what do I write in the start with n= ???? to get the correct values?

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

답변 (2개)

Michael
Michael 2022년 8월 30일
if n>1
f = sqrt(1 + f(n-1));
elseif n == 1
f=2;
else
f = NaN;
end
  댓글 수: 1
Michael
Michael 2022년 8월 30일
Might want to check out the Matlab Onramp course.

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


Torsten
Torsten 2022년 8월 30일
편집: Torsten 2022년 8월 30일
n = 6;
f = 2;
for i = 2:n
f = sqrt(1+f);
end
f
f = 1.6191
finf = 0.5+sqrt(0.5^2+1)
finf = 1.6180

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by