rsl-interpolation 0.1.15

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

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

mod bicubic;
mod bilinear;

mod dynamic1d;
mod dynamic2d;

pub(crate) use utils::*;

pub use akima::{Akima, AkimaInterp};
pub use akima::{AkimaPeriodic, AkimaPeriodicInterp};
pub use cache::Cache;
pub use cubic::{Cubic, CubicInterp};
pub use cubic::{CubicPeriodic, CubicPeriodicInterp};
pub use linear::{Linear, LinearInterp};
pub use steffen::{Steffen, SteffenInterp};

pub use bicubic::{Bicubic, BicubicInterp};
pub use bilinear::{Bilinear, BilinearInterp};

pub use dynamic1d::DynInterpType;
pub use dynamic2d::DynInterp2dType;