ndarray-interp 0.2.0

Interpolation package for ndarray
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# ndarray-interp
A Interpolation crate for usage with the rust [ndarray](https://crates.io/crates/ndarray) crate.

# Features
 - Interpolation of _n_-dimensional data along the first axis
 - Add your own Interpolation algorithms
 - Interpolation of owned arrays and array views
 - Interpolation at multiple points at once

## Interpolation strategies
 - Linear interpolation with, and without extrapolation
 - Cubic spline interpolation

## Planned Features
 - More interpolation strategies
 - Interpolation along 2 axis (2D-Interpolation)
 - [rayon]https://crates.io/crates/rayon support