module documentation
Contains routines that are mostly wrappers around scipy interpolation functions
| Function | interpolate |
Interpolates an array 'data' at the True points given in 'mask' **kwargs is passed through to "sp.interpolate.griddata()" |
def interpolate_at_mask(data:
np.ndarray[ [ ...], Any], mask: np.ndarray[ [ ...], bool], edges: None | Literal[ 'convolution'] = None, **kwargs) -> np.ndarray[ [ ...], Any]:
¶
Interpolates an array 'data' at the True points given in 'mask' **kwargs is passed through to "sp.interpolate.griddata()"