Secant method Nan Error

조회 수: 1 (최근 30일)
Grégoire
Grégoire 2024년 3월 14일
댓글: Grégoire 2024년 3월 14일
hey,
I'm trying to learn how to code the Secant Method,
I think I am getting everything right but the values of my variables are 'NaN'... what does it mean and how can I change it ?
Thanks for the help !
R=3;
f= @(x) (pi.*(x.^2)).*(3.*R-x)-3.*48.25;
X0=2;
X1=3;
Y0= f(X0);
Y1= f(X1);
k=1;
error=1;
while k<10 && error>10^(-6)
X = X1 - (X0-X1).*Y1./(Y0-Y1) ;
Y = f(x);
X0=X1;
X1=X;
Y0=Y1;
Y1=Y;
k =k+1;
end
X
Y

채택된 답변

Alan Stevens
Alan Stevens 2024년 3월 14일
You haven't updated error in your while loop. Try including something like
error = abs(X0-X1);
  댓글 수: 1
Grégoire
Grégoire 2024년 3월 14일
Perfect ! thanks for the help :)

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by