conspire::math::interpolate

Trait InterpolateSolution

Source
pub trait InterpolateSolution<Y, U>
where Y: Tensor + TensorArray, for<'a> &'a Y: Mul<TensorRank0, Output = Y> + Sub<&'a Y, Output = Y>, U: TensorVec<Item = Y>,
{ // Required method fn interpolate( &self, time: &Vector, tp: &Vector, yp: &U, function: impl Fn(&TensorRank0, &Y) -> Y, ) -> U; }
Expand description

Solution interpolation schemes.

Required Methods§

Source

fn interpolate( &self, time: &Vector, tp: &Vector, yp: &U, function: impl Fn(&TensorRank0, &Y) -> Y, ) -> U

Solution 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<Y, U> InterpolateSolution<Y, U> for BackwardEuler
where Y: Tensor + TensorArray, for<'a> &'a Y: Mul<TensorRank0, Output = Y> + Sub<&'a Y, Output = Y>, U: TensorVec<Item = Y>,

Source§

impl<Y, U> InterpolateSolution<Y, U> for BogackiShampine
where Y: Tensor + TensorArray, for<'a> &'a Y: Mul<TensorRank0, Output = Y> + Sub<&'a Y, Output = Y>, U: TensorVec<Item = Y>,

Source§

impl<Y, U> InterpolateSolution<Y, U> for DormandPrince
where Y: Tensor + TensorArray, for<'a> &'a Y: Mul<TensorRank0, Output = Y> + Sub<&'a Y, Output = Y>, U: TensorVec<Item = Y>,

Source§

impl<Y, U> InterpolateSolution<Y, U> for Verner8
where Y: Tensor + TensorArray, for<'a> &'a Y: Mul<TensorRank0, Output = Y> + Sub<&'a Y, Output = Y>, U: TensorVec<Item = Y>,

Source§

impl<Y, U> InterpolateSolution<Y, U> for Verner9
where Y: Tensor + TensorArray, for<'a> &'a Y: Mul<TensorRank0, Output = Y> + Sub<&'a Y, Output = Y>, U: TensorVec<Item = Y>,