info.txt

来自「polynomial interpolation」· 文本 代码 · 共 15 行

TXT
15
字号
Polynomial interpolation
------------------------

Polynomial interpolation is the interpolation of a given data set by a polynomial. Given some data points {xi, yi}, the aim is to find a polynomial which goes exactly through these points. This program calculates the coefficients of that polynomial.

Given a set of n data points (xi,yi) where no two xi are the same, one is looking for a polynomial p of degree at most (n-1) with the property: p(xi) = yi for every xi, yi.

For the solution of the problem, a linear system of dimensions nxn has to be formed and to be solved. The program features a user-friendly interface which is limited to 10 {xi, yi} data points. Yet, the process itself, can be used for the solution of any problem of (whatever) greater number of data points, too.

Written by Vagelis Plevris, Greece
mail to: vplevris@tee.gr

For the mathematical background of Polynomial interpolation, see also: 
http://en.wikipedia.org/wiki/Polynomial_interpolation

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?