interpax.Interpolator2D.__call__
- Interpolator2D.__call__(xq: Real[Array, '...'] | Real[ndarray, '...'] | number | int | float, yq: Real[Array, '...'] | Real[ndarray, '...'] | number | int | float, dx: int = 0, dy: int = 0) Inexact[Array, '...']Source
Evaluate the interpolated function or its derivatives.
- Parameters:
xq (ndarray, shape(Nq,)) – x, y query points where interpolation is desired
yq (ndarray, shape(Nq,)) – x, y query points where interpolation is desired
dx (int >= 0) – Derivative to take in x, y directions.
dy (int >= 0) – Derivative to take in x, y directions.
- Returns:
fq (ndarray, shape(Nq, …)) – Interpolated values.