Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 802 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 802 Bytes

ndarray-interp

A Interpolation crate for usage with the rust ndarray crate.

Features

  • 1D-Interpolation of n-dimensional data along the first axis
  • 2D-Interpolation of n-dimensional data along the first two axes
  • 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 Wikipedia
  • Bilinear interpolation with, and without extrapolation Wikipedia

Planned Features

  • More interpolation strategies
  • rayon support