Interpolate1D

Trait Interpolate1D 

Source
pub trait Interpolate1D<F, T>
where F: TensorVec<Item = T>, T: Tensor,
{ // Required method fn interpolate_1d(x: &Vector, xp: &Vector, fp: &F) -> F; }
Expand description

One-dimensional interpolation schemes.

Required Methods§

Source

fn interpolate_1d(x: &Vector, xp: &Vector, fp: &F) -> F

One-dimensional interpolation.

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<F, T> Interpolate1D<F, T> for LinearInterpolation
where F: TensorVec<Item = T>, T: Tensor,