This is documentation for an old release of SciPy (version 0.18.1). Read this page in the documentation of the latest stable release (version 1.15.0).
scipy.interpolate.RectSphereBivariateSpline.ev¶
- RectSphereBivariateSpline.ev(theta, phi, dtheta=0, dphi=0)[source]¶
Evaluate the spline at points
Returns the interpolated value at (theta[i], phi[i]), i=0,...,len(theta)-1.
Parameters: theta, phi : array_like
Input coordinates. Standard Numpy broadcasting is obeyed.
dtheta : int, optional
Order of theta-derivative
New in version 0.14.0.
dphi : int, optional
Order of phi-derivative
New in version 0.14.0.