本文原文发表于本人博客 哔哔哔哔-使用C++计算3次牛顿插值法
牛顿插值法是数值分析中一种用于插值的多项式,由Issac Newton提出,是估算函数值的重要方法之一
前言
近期数值分析课程讲到了牛顿插值法,感觉比拉格朗日插值法更简单一些,出于兴趣便想用C++复现一下
GitHub地址
https://github.com/gst-be/newton_interpolation
代码
#include <iostream>
#include <stdio.h>
using namespace std;
int main()
{
double x[5],f[5][5],t;
for(int i