Evaluate a bivariate B-spline and its derivatives.
Return a rank-2 array of spline function values (or spline derivative values) at points given by the cross-product of the rank-1 arrays x and y. In special cases, return an array or just a float if either x or y or both are floats. Based on BISPEV from FITPACK.
Parameters : | x, y : ndarray
tck : tuple
dx, dy : int, optional
|
---|---|
Returns : | vals : ndarray
|
See also
splprep, splrep, splint, sproot, splev, UnivariateSpline, BivariateSpline
Notes
See bisplrep to generate the tck representation.
References
[R23] | Dierckx P. : An algorithm for surface fitting with spline functions Ima J. Numer. Anal. 1 (1981) 267-283. |
[R24] | Dierckx P. : An algorithm for surface fitting with spline functions report tw50, Dept. Computer Science,K.U.Leuven, 1980. |
[R25] | Dierckx P. : Curve and surface fitting with splines, Monographs on Numerical Analysis, Oxford University Press, 1993. |