summaryrefslogtreecommitdiff
path: root/413/CH1/EX1.4/Example_1.sce
blob: b92d1239e15e4b54cda52f760c9843731c6aeb18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
clearglobal()
clc;
fx='x.^3+2*x.^2-x+5'
dfx='3*x.^2+4*x-1'
x0=2.5;
x = x0;   fa=eval(fx);
tol=0.0000001
while abs(fa)>tol
x = x0;   fa=eval(fx); dfa=eval(dfx)
x1=x0-fa/dfa;
     X = [x0,x1];
    disp(X)
    x0=x1
   end;