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

pub struct Interp { /* fields omitted */ }

Implementations

This function returns a pointer to a newly allocated interpolation object of type T for size data-points.

use rgsl::{Interp, InterpType};

let interp_type = InterpType::linear();
let interp = Interp::new(interp_type, 2).expect("Failed to initialize `Interp`...");

This function initializes the interpolation object interp for the data (xa,ya) where xa and ya are arrays of size size. The interpolation object (gsl_interp) does not save the data arrays xa and ya and only stores the static state computed from the data. The xa data array is always assumed to be strictly ordered, with increasing x values; the behavior for other arrangements is not defined.

Asserts that ya.len() >= xa.len().

This function returns the name of the interpolation type used by interp. For example,

use rgsl::{Interp, InterpType};

let interp_type = InterpType::linear();
let interp = Interp::new(interp_type, 2).expect("Failed to initialize `Interp`...");
println!("interp uses '{}' interpolation.", interp.name());

would print something like :

interp uses 'cspline' interpolation.

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.

Trait Implementations

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.