1、插值和拟合: 都是根据已知数据点(比如二维的x,y),得到一条曲线(或者直线,或者面)。也就是说说,根据有限的数据点,得到更多的数据点。(推测统计是不是有点像,根据样本点推测整体的情况,没有关系的吧)。那怎么得到更多的点,或者整个数据呢?插值的意思是根据离散的这些已知点,去得到连续的点(就是曲线或者曲面),那为什么叫插值?看下面的英文解释:

In the mathematical field of numerical analysis, interpolation is a method of constructing new data points within the range of a discrete set of known data points.
In engineering and science, one often has a number of data points, obtained by sampling or experimentation, which represent the values of a function for a limited number of values of the independent variable. It is often required to interpolate (i.e., estimate) the value of that function for an intermediate value of the independent variable.

反正,就是用函数的方式去 补充(interpolation)剩余的数据点。一般来说,可以是一条完整的曲线(Polynomial interpolation),但是,有时候效果不好,就可以用分段的函数 去补充。如果是线性的函数,就是Linear interpolation;如果是非线性的,比如Spline interpolation(用多项式函数等),看图:

数值分析的整理

数值分析的整理数值分析的整理

相关文章:

  • 2021-10-05
  • 2021-10-10
  • 2021-07-01
  • 2022-12-23
  • 2021-10-04
  • 2021-12-18
  • 2022-12-23
  • 2022-02-08
猜你喜欢
  • 2022-12-23
  • 2021-08-22
  • 2022-12-23
  • 2021-12-08
  • 2022-12-23
  • 2022-12-23
  • 2021-07-10
相关资源
相似解决方案