scijit.interpolateΒΆ

scipy.interpolate equivalents callable from inside numba.@njit code, backed by the same Dierckx FITPACK Fortran that SciPy wraps. Each name below links to a page generated from its docstring: parameters, returns, a runnable @njit example, and, where it applies, the ways it differs from scipy.

splrep

Compute the B-spline representation of a 1-D curve.

splprep

Compute the B-spline representation of an N-D parametric curve.

splev

Evaluate a spline or one of its derivatives.

splder_ev

Evaluate the nu-th derivative of a spline.

splint

Evaluate the definite integral of a spline.

sproot

Find the roots of a cubic spline.

spalde

Evaluate all derivatives of a spline at one point.

bisplev

Evaluate a bivariate spline on a grid.

bispev

Evaluate a bivariate spline on a grid, FITPACK bispev.

bispeu

Evaluate a bivariate spline at scattered points, FITPACK bispeu.

splder

Spline representation of the n-th derivative of a spline.

splantider

Spline representation of the n-th antiderivative of a spline.

UnivariateSpline

Build a univariate smoothing spline.

InterpolatedUnivariateSpline

Build an interpolating spline through every data point.

LSQUnivariateSpline

Build a least-squares spline on given interior knots.

RectBivariateSpline

Build a bivariate spline over gridded data.

SmoothBivariateSpline

Build a bivariate smoothing spline over scattered data.

RectSphereBivariateSpline

Build a spline on a spherical grid.

SmoothSphereBivariateSpline

Build a smoothing spline on a sphere.

RegularGridInterpolator

Build an _RGI for interpolation on a regular grid.

interpn

Interpolate on a regular grid.

CubicSpline

C2 cubic spline interpolator over piecewise-cubic segments.

PchipInterpolator

Monotone piecewise-cubic Hermite interpolator (Fritsch-Carlson slopes).

interp1d

Build an _Interp1D for one-dimensional interpolation.

BSpline

Univariate spline in the B-spline basis.

make_interp_spline

Interpolating B-spline through (x, y).

Akima1DInterpolator

Akima piecewise-cubic interpolator.