peroxide::numerical::spline

Trait Spline

Source
pub trait Spline<T> {
    // Required method
    fn eval(&self, t: f64) -> T;

    // Provided methods
    fn eval_vec(&self, v: &[f64]) -> Vec<T> { ... }
    fn eval_with_cond<F: Fn(T) -> T>(&self, t: f64, cond: F) -> T { ... }
    fn eval_vec_with_cond<F: Fn(T) -> T + Copy>(
        &self,
        t: &[f64],
        cond: F,
    ) -> Vec<T> { ... }
}

Required Methods§

Source

fn eval(&self, t: f64) -> T

Provided Methods§

Source

fn eval_vec(&self, v: &[f64]) -> Vec<T>

Source

fn eval_with_cond<F: Fn(T) -> T>(&self, t: f64, cond: F) -> T

Source

fn eval_vec_with_cond<F: Fn(T) -> T + Copy>(&self, t: &[f64], cond: F) -> Vec<T>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl Spline<(f64, f64)> for BSpline

Source§

impl<P: PolynomialSpline> Spline<f64> for P

Trait for spline interpolation

§Available Splines

  • CubicSpline
  • CubicHermiteSpline