/**
用牛顿迭代法求方程f(x)=e^x-3-x=0,在区间(1,2)内的根,输出迭代结果并统计所用迭代次数,取 误差=10^(-5) ,x0=2
*/
public class Newton{
public static void main(String[] args){
Iteration it = new Iteration();
it.setX0(2);
it.setAC(0.00001);
double temp = 0;
it.show(
【计算方法实验】实验2:牛顿迭代法
最新推荐文章于 2023-12-24 17:43:17 发布

最低0.47元/天 解锁文章
1695

被折叠的 条评论
为什么被折叠?



