Interpolator§
- typed_lisa_toolkit.types.misc.Interpolator§
A callable providing interpolation functionality.
The callable takes two
arraysas input, representing the x and y coordinates of the known data points, and returns a function that can be used to interpolate values at new x coordinates.alias of
Callable[[Array[Any,ModuleType] |ndarray[tuple[Any, …],dtype[Any]],Array[Any,ModuleType] |ndarray[tuple[Any, …],dtype[Any]]],Callable[[Array[Any,ModuleType] |ndarray[tuple[Any, …],dtype[Any]]],Array[Any,ModuleType] |ndarray[tuple[Any, …],dtype[Any]]]]