I have forgotten
my Password

Or login with:

  • Facebookhttp://facebook.com/
  • Googlehttps://www.google.com/accounts/o8/id
  • Yahoohttps://me.yahoo.com

Interpolation

Akima

Interpolates a given set of points using Akima spline fitting.
double Akima_once (int N, double *x, double *y, double a)
Icon

Cubic

Interpolates a given set of points using cubic spline fitting.
double Cubic_once (int N, double *x, double *y, double a)
Icon

Lagrange

Interpolates a given set of points using the Lagrange polynomial.
double Lagrange_once (int N, double *x, double *y, double a, int l)
Icon

Linear

Linearly interpolates a given set of points.
double Linear_once (int N, double *x, double *y, double a)
Icon

Univariate

Univeriate curve-fitting, interpolation, polynomial, spline, Akima
IconIconIconIconIconIcon

Multivariate

Multivariate interpolation, nearest-neighbor, bilinear, multilinear, bicubic, multicubic
IconIconIconIcon