x(i+1)=y(i​)-((f(y(i)​)/d(y(i)))​); // error in this line..

조회 수: 1 (최근 30일)
Umar Bhai
Umar Bhai 2019년 4월 4일
답변: KSSV 2019년 4월 4일
% Program Code of Newton-Raphson Method in MATLAB
a=input('Enter the function in the form of variable x:','s');
y(1)=input('Enter Initial Guess:');
error=input('Enter allowed Error:');
f=inline(a);
dif=diff(sym(a));
d=inline(dif);
for i=1:100
x(i+1)=y(i)-((f(y(i))/d(y(i))));x(i+1)=y(i)-((f(y(i))/d(y(i))));
error(i)=abs((y(i+1)-y(i))/y(i));
if err(i)<error
break
end
end
root=y(i);
  댓글 수: 1
KSSV
KSSV 2019년 4월 4일
You need to rethink on your code. There is no y(i+1) and you are extracting it. Google for Newton Raphson code and you will get. LEarn from it.

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

답변 (1개)

KSSV
KSSV 2019년 4월 4일

카테고리

Help CenterFile Exchange에서 Newton-Raphson Method에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by