Numerical interpolation in N-dimensions over rectilinear grids
https://crates.io/crates/ninterp ↗// readme
ninterp
The ninterp crate provides multivariate interpolation over rectilinear grids of any dimensionality.
It is built on ndarray and uses ndarray arrays/views throughout its API.
ndarray and num_traits are re-exposed as ninterp::ndarray and
ninterp::num_traits for convenience.
Hard-coded interpolators are provided for N = 1, 2, and 3, based on the observed runtime tradeoff versus a general N-D implementation.
For higher dimensionalities (N >= 4), use InterpND.
All interpolators work with both owned and borrowed arrays…