Skip to main content

Interp2DViewed

Type Alias Interp2DViewed 

Source
pub type Interp2DViewed<T, S> = Interp2D<ViewRepr<T>, S>;
Expand description

Interp2D that views data.

Aliased Type§

pub struct Interp2DViewed<T, S> {
    pub data: InterpData<ViewRepr<T>, 2>,
    pub strategy: S,
    pub extrapolate: Extrapolate<<ViewRepr<T> as RawData>::Elem>,
}

Fields§

§data: InterpData<ViewRepr<T>, 2>

Interpolator data.

§strategy: S

Interpolation strategy.

§extrapolate: Extrapolate<<ViewRepr<T> as RawData>::Elem>

Extrapolation setting.