Struct rgsl::types::interpolation::InterpType [] [src]

pub struct InterpType {
    // some fields omitted
}

Methods

impl InterpType
[src]

fn min_size(&self) -> u32

This function returns the minimum number of points required by the interpolation object interp or interpolation type T. For example, Akima spline interpolation requires a minimum of 5 points.

fn linear() -> InterpType

Linear interpolation. This interpolation method does not require any additional memory.

fn polynomial() -> InterpType

Polynomial interpolation. This method should only be used for interpolating small numbers of points because polynomial interpolation introduces large oscillations, even for well-behaved datasets. The number of terms in the interpolating polynomial is equal to the number of points.

fn cspline() -> InterpType

Cubic spline with natural boundary conditions. The resulting curve is piecewise cubic on each interval, with matching first and second derivatives at the supplied data-points. The second derivative is chosen to be zero at the first point and last point.

fn cspline_periodic() -> InterpType

Cubic spline with periodic boundary conditions. The resulting curve is piecewise cubic on each interval, with matching first and second derivatives at the supplied data-points. The derivatives at the first and last points are also matched. Note that the last point in the data must have the same y-value as the first point, otherwise the resulting periodic interpolation will have a discontinuity at the boundary.

fn akima() -> InterpType

Non-rounded Akima spline with natural boundary conditions. This method uses the non-rounded corner algorithm of Wodicka.

fn akima_periodic() -> InterpType

Non-rounded Akima spline with periodic boundary conditions. This method uses the non-rounded corner algorithm of Wodicka.

Trait Implementations

impl Copy for InterpType
[src]

impl Clone for InterpType
[src]

fn clone(&self) -> InterpType

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more