rsl-interpolation 0.1.19

A re-write of GSL's Interpolation Routines in Rust.
Documentation
mod utils;

mod akima;
mod cubic;
mod linear;
mod steffen;

mod bicubic;
mod bilinear;

pub(crate) use utils::*;

pub use akima::{AkimaInterpolator, AkimaPeriodicInterpolator};
pub use cubic::{CubicInterpolator, CubicPeriodicInterpolator};
pub use linear::LinearInterpolator;
pub use steffen::SteffenInterpolator;

pub use bicubic::BicubicInterpolator;
pub use bilinear::BilinearInterpolator;