Find a bivariate B-spline representation of a surface.
Given a set of data points (x[i], y[i], z[i]) representing a surface z=f(x,y), compute a B-spline representation of the surface. Based on the routine SURFIT from FITPACK.
Parameters : | x, y, z : ndarray
w : ndarray, optional
xb, xe : float, optional
yb, ye : float, optional
kx, ky : int, optional
task : int, optional
s : float, optional
eps : float, optional
tx, ty : ndarray, optional
full_output : int, optional
nxest, nyest : int, optional
quiet : int, optional
|
---|---|
Returns : | tck : array_like
fp : ndarray
ier : int
msg : str
|
See also
splprep, splrep, splint, sproot, splev, UnivariateSpline, BivariateSpline
Notes
See bisplev to evaluate the value of the B-spline given its tck representation.
References
[R26] | Dierckx P.:An algorithm for surface fitting with spline functions Ima J. Numer. Anal. 1 (1981) 267-283. |
[R27] | Dierckx P.:An algorithm for surface fitting with spline functions report tw50, Dept. Computer Science,K.U.Leuven, 1980. |
[R28] | Dierckx P.:Curve and surface fitting with splines, Monographs on Numerical Analysis, Oxford University Press, 1993. |