pub trait Linear {
// Required method
fn linear(&self, point: &[f64]) -> Result<f64, InterpolationError>;
}Expand description
Linear interpolation: https://en.wikipedia.org/wiki/Linear_interpolation
pub trait Linear {
// Required method
fn linear(&self, point: &[f64]) -> Result<f64, InterpolationError>;
}Linear interpolation: https://en.wikipedia.org/wiki/Linear_interpolation