1

我做了这个

f[x_] := x - 2
x0 = 999.; imax = 5;
Module[{i, x}, x[0] = x0;
 For[i = 0, i < imax, x[i + 1] = x[i] - f[x[i]]/f'[x[i]];
  Print[x[i]];
  i++]]

并试图把它变成一个牛顿拉普森函数。我需要能够输入函数 F[x]、初始猜测和 imax。

4

2 回答 2

3

多一点 Mathematica 风格:

newt[f_, x0_, imax_] := NestList[# - f@#/f'@# &, x0, imax];
f[x_] := x - 2
x0 = 999; imax = 5; 
newt[f, x0, imax]
(*
-> {999, 2, 2, 2, 2, 2}
*)
于 2012-10-25T02:18:31.033 回答
0

Mathematica 就是这么简单:

newtonraph = Function[{f,x0,imax},Module[{i,x}, 
                       x[0] = x0;
                       For[i=0, i < imax, x[i+1] = x[i] - f[x[i]]/f'[x[i]];
                         Print[x[i]];
                         i++
                       ];
                      ];
                     ];

并调用函数:

func[t_] = 23 + t + 2*(t^2)
newtonraph[func,10,100]
于 2012-10-25T02:03:07.607 回答