牛顿在C ++中的方法

时间:2018-02-20 00:33:25

标签: c++ newtons-method cmath

我试图在c ++源代码中翻译f(x)= x - e - (x 2 ,但我一直在收到错误。我试过了:

private void button_Save_Click(object sender, EventArgs e)
    {
        SaveFileDialog sfd = new SaveFileDialog();
        sfd.Filter = "PNG(*.PNG)|*.png";

        if (sfd.ShowDialog() == DialogResult.OK)
            pictureBox.Image.Save(sfd.FileName, ImageFormat.Png);
    }

有什么见解? 如果它有帮助,我使用Code :: Blocks

1 个答案:

答案 0 :(得分:1)

#include <math.h>
double f(double x)
{
    return x - exp(-(x*x));
}