pub struct CubicSplineStrategy<Sd, D>{ /* private fields */ }
Expand description
The CubicSpline 1d interpolation Strategy (Implementation)
This is constructed by CubicSpline
Trait Implementations§
Source§impl<Sd, D> Debug for CubicSplineStrategy<Sd, D>
impl<Sd, D> Debug for CubicSplineStrategy<Sd, D>
Source§impl<Sd, Sx, D> Interp1DStrategy<Sd, Sx, D> for CubicSplineStrategy<Sd, D>
impl<Sd, Sx, D> Interp1DStrategy<Sd, Sx, D> for CubicSplineStrategy<Sd, D>
Source§fn interp_into(
&self,
interp: &Interp1D<Sd, Sx, D, Self>,
target: ArrayViewMut<'_, Sd::Elem, <D as Dimension>::Smaller>,
x: Sx::Elem,
) -> Result<(), InterpolateError>
fn interp_into( &self, interp: &Interp1D<Sd, Sx, D, Self>, target: ArrayViewMut<'_, Sd::Elem, <D as Dimension>::Smaller>, x: Sx::Elem, ) -> Result<(), InterpolateError>
Auto Trait Implementations§
impl<Sd, D> Freeze for CubicSplineStrategy<Sd, D>where
D: Freeze,
impl<Sd, D> RefUnwindSafe for CubicSplineStrategy<Sd, D>
impl<Sd, D> Send for CubicSplineStrategy<Sd, D>
impl<Sd, D> Sync for CubicSplineStrategy<Sd, D>
impl<Sd, D> Unpin for CubicSplineStrategy<Sd, D>where
D: Unpin,
impl<Sd, D> UnwindSafe for CubicSplineStrategy<Sd, D>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more