pub trait InterpMethods {
// Required methods
fn validate(&self) -> Result<(), ValidationError>;
fn interpolate(&self, point: &[f64]) -> Result<f64, InterpolationError>;
}Expand description
Methods applicable to all interpolators
Required Methods§
Sourcefn interpolate(&self, point: &[f64]) -> Result<f64, InterpolationError>
fn interpolate(&self, point: &[f64]) -> Result<f64, InterpolationError>
Interpolate at supplied point