1D & 2D Interpolation
interp provides functions for interpolation of one dimensional and two dimensional array.
Example
use Interp2D;
// Create 2D array of values.
let grid = array!;
// Create grid coordinates.
let xs = vec!;
let ys = vec!;
// Create interpolator struct.
let interp = new;
// Evaluate the interpolated data at some point.
assert!;