码迷,mamicode.com
首页 > 其他好文 > 详细

结合之前博客中的代码产生的牛顿求根法

时间:2015-02-07 17:19:36      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

cdouble DX = 0.00001;

dFun Deriv (dFun g)
{
    return [g] ( cdouble &x)
               { auto delta_x = x + DX;
                 return (g(delta_x) - g(x)) / DX;};
}

dFun NewtonTransForm (dFun g)
{
    return [g] (cdouble &x)
               {return (x - (g(x) / (Deriv(g)(x))));};
}

double NewtonsMethod (dFun g, cdouble &guess)
{
    return FixedPoint (NewtonTransForm(g), guess);
}

double NewtonsSqrt (cdouble &x)
{
    return NewtonsMethod ([x] (cdouble &y)
                              {return (pow(y, 2) - x);}
                         , 1.0);
}

int main ()
{
    cout << NewtonsSqrt(121.04);
    cout << endl;
    return 0;
}

 

结合之前博客中的代码产生的牛顿求根法

标签:

原文地址:http://www.cnblogs.com/wuOverflow/p/4279037.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!