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

1 Ansicht (letzte 30 Tage)
Umar Bhai
Umar Bhai am 4 Apr. 2019
Beantwortet: KSSV am 4 Apr. 2019
% 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 Kommentar
KSSV
KSSV am 4 Apr. 2019
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.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

KSSV
KSSV am 4 Apr. 2019

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by