Bivariate spline approximation over a rectangular mesh.
Can be used for both smoothing and interpolating data.
| Parameters: | x,y : array_like
z : array_like
bbox : array_like, optional
kx, ky : ints, optional
s : float, optional
|
|---|
See also
Methods
| __call__(x, y[, mth, dx, dy, grid]) | Evaluate the spline or its derivatives at given positions. |
| ev(xi, yi[, dx, dy]) | Evaluate the spline at points |
| get_coeffs() | Return spline coefficients. |
| get_knots() | Return a tuple (tx,ty) where tx,ty contain knots positions of the spline with respect to x-, y-variable, respectively. |
| get_residual() | Return weighted sum of squared residuals of the spline |
| integral(xa, xb, ya, yb) | Evaluate the integral of the spline over area [xa,xb] x [ya,yb]. |