[][src]Struct peroxide::numerical::spline::CubicSpline

pub struct CubicSpline { /* fields omitted */ }

Cubic Spline (Natural)

Methods

impl CubicSpline[src]

pub fn from_nodes(node_x: Vector, node_y: Vector) -> Self[src]

Examples

extern crate peroxide;
use peroxide::*;

let x = c!(0.9, 1.3, 1.9, 2.1);
let y = c!(1.3, 1.5, 1.85, 2.1);

let s = CubicSpline::from_nodes(x, y);

for i in 0 .. 4 {
    println!("{}", s.eval(i as f64 / 2.0));
}

pub fn eval<T>(&self, x: T) -> f64 where
    T: Into<f64> + Copy
[src]

Evaluate cubic spline with value

Examples

extern crate peroxide;
use peroxide::*;

let x = c!(0.9, 1.3, 1.9, 2.1);
let y = c!(1.3, 1.5, 1.85, 2.1);

let s = CubicSpline::from_nodes(x, y);

s.eval(2.0);

pub fn extend_with_nodes(&mut self, node_x: Vector, node_y: Vector)[src]

Trait Implementations

impl From<Vec<(Range<f64>, Polynomial)>> for CubicSpline[src]

impl Into<Vec<Polynomial>> for CubicSpline[src]

impl Into<Vec<(Range<f64>, Polynomial)>> for CubicSpline[src]

impl Clone for CubicSpline[src]

impl Debug for CubicSpline[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,