非線形方程式の数値解法ニュートン法

3 + 4 * X ^ 2-10非線形方程式の根Y = X ^ 3つの小数点以下の精度区間[1,2]、で
hanshu反復式

#include <iostream>
using namespace std;
#define WUCHA 0.0005
double hanshu(double x) {
    return x - (x * x * x + 4 * x * x - 10) / (3 * x * x + 8 * x);
}
int main()
{
    double x = 1.5;
    double xx = 100000;
    int count = 0;
    while (abs(x-xx)>WUCHA) {
        xx = x;
        x = hanshu(x);
        count++;
        
    }
    cout << "结果:" << x << endl;
    cout << "迭代次数:" << count;
}

ここに画像を挿入説明

リリース元の4件の記事 ウォンの賞賛0 ビュー121

おすすめ

転載: blog.csdn.net/weixin_43625164/article/details/104617434