Struct Interp1D

Source
pub struct Interp1D<D, S>
where D: Data + RawDataClone + Clone, D::Elem: Num + PartialOrd + Copy + Debug, S: Strategy1D<D> + Clone,
{ pub data: InterpData1D<D>, pub strategy: S, pub extrapolate: Extrapolate<D::Elem>, }
Expand description

1-D interpolator

Fields§

§data: InterpData1D<D>§strategy: S§extrapolate: Extrapolate<D::Elem>

Implementations§

Source§

impl<D, S> Interp1D<D, S>
where D: Data + RawDataClone + Clone, D::Elem: Num + PartialOrd + Copy + Debug, S: Strategy1D<D> + Clone,

Source

pub fn set_extrapolate( &mut self, extrapolate: Extrapolate<D::Elem>, ) -> Result<(), ValidateError>

Set Extrapolate variant, checking validity.

Source

pub fn check_extrapolate( &self, extrapolate: &Extrapolate<D::Elem>, ) -> Result<(), ValidateError>

Source§

impl<D, S> Interp1D<D, S>
where D: Data + RawDataClone + Clone, D::Elem: Num + PartialOrd + Copy + Debug, S: Strategy1D<D> + Clone,

Source

pub fn new( x: ArrayBase<D, Ix1>, f_x: ArrayBase<D, Ix1>, strategy: S, extrapolate: Extrapolate<D::Elem>, ) -> Result<Self, ValidateError>

Instantiate one-dimensional interpolator.

Applicable interpolation strategies:

Extrapolate::Enable is valid for Linear

§Example:
use ndarray::prelude::*;
use ninterp::prelude::*;
// f(x) = 0.4 * x
let interp = Interp1D::new(
    // x
    array![0., 1., 2.], // x0, x1, x2
    // f(x)
    array![0.0, 0.4, 0.8], // f(x0), f(x1), f(x2)
    Linear,
    Extrapolate::Enable,
)
.unwrap();
assert_eq!(interp.interpolate(&[1.4]).unwrap(), 0.56);
assert_eq!(
    interp.interpolate(&[3.6]).unwrap(),
    1.44
);
Source§

impl<D> Interp1D<D, Box<dyn Strategy1D<D>>>
where D: Data + RawDataClone + Clone, D::Elem: Num + PartialOrd + Copy + Debug,

Source

pub fn set_strategy( &mut self, strategy: Box<dyn Strategy1D<D>>, ) -> Result<(), ValidateError>

Update strategy dynamically.

Trait Implementations§

Source§

impl<D, S> Clone for Interp1D<D, S>
where D: Data + RawDataClone + Clone + Clone, D::Elem: Num + PartialOrd + Copy + Debug + Clone, S: Strategy1D<D> + Clone + Clone,

Source§

fn clone(&self) -> Interp1D<D, S>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<D, S> Debug for Interp1D<D, S>
where D: Data + RawDataClone + Clone + Debug, D::Elem: Num + PartialOrd + Copy + Debug + Debug, S: Strategy1D<D> + Clone + Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<D, S> Interpolator<<D as RawData>::Elem> for Interp1D<D, S>
where D: Data + RawDataClone + Clone, D::Elem: Num + PartialOrd + Copy + Debug, S: Strategy1D<D> + Clone,

Source§

fn ndim(&self) -> usize

Returns 1.

Source§

fn validate(&self) -> Result<(), ValidateError>

Validate interpolator data.
Source§

fn interpolate(&self, point: &[D::Elem]) -> Result<D::Elem, InterpolateError>

Interpolate at supplied point.
Source§

impl<D, S> PartialEq for Interp1D<D, S>

Source§

fn eq(&self, other: &Interp1D<D, S>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<D, S> StructuralPartialEq for Interp1D<D, S>
where D: Data + RawDataClone + Clone, D::Elem: Num + PartialOrd + Copy + Debug, S: Strategy1D<D> + Clone,

Auto Trait Implementations§

§

impl<D, S> Freeze for Interp1D<D, S>
where <D as RawData>::Elem: Sized + Freeze, S: Freeze, D: Freeze,

§

impl<D, S> RefUnwindSafe for Interp1D<D, S>

§

impl<D, S> Send for Interp1D<D, S>
where <D as RawData>::Elem: Sized + Send, S: Send, D: Send,

§

impl<D, S> Sync for Interp1D<D, S>
where <D as RawData>::Elem: Sized + Sync, S: Sync, D: Sync,

§

impl<D, S> Unpin for Interp1D<D, S>
where <D as RawData>::Elem: Sized + Unpin, S: Unpin, D: Unpin,

§

impl<D, S> UnwindSafe for Interp1D<D, S>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.