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

#[repr(C)]
pub struct InterpAccel { pub cache: usize, pub miss_count: usize, pub hit_count: usize, }

evaluation accelerator

Fields

cache of index

keep statistics

Methods

impl InterpAccel
[src]

This function returns a pointer to an accelerator object, which is a kind of iterator for interpolation lookups. It tracks the state of lookups, thus allowing for application of various acceleration strategies.

This function reinitializes the accelerator object acc. It should be used when the cached information is no longer applicable—for example, when switching to a new dataset.

This function performs a lookup action on the data array x_array of size size, using the given accelerator a. This is how lookups are performed during evaluation of an interpolation. The function returns an index i such that x_array[i] <= x < x_array[i+1].

Trait Implementations

impl Clone for InterpAccel
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for InterpAccel
[src]