Struct peroxide::numerical::spline::CubicSpline
source · pub struct CubicSpline { /* private fields */ }
Expand description
Cubic Spline (Natural)
§Description
Implement traits of Natural cubic splines, by Arne Morten Kvarving.
§Type
(&[f64], &[f64]) -> Cubic Spline
§Examples
#[macro_use]
extern crate peroxide;
use peroxide::fuga::*;
fn main() -> Result<(), Box<dyn Error>> {
let x = c!(0.9, 1.3, 1.9, 2.1);
let y = c!(1.3, 1.5, 1.85, 2.1);
let s = cubic_spline(&x, &y)?;
let new_x = c!(1, 1.5, 2.0);
// Generate Cubic polynomial
for t in new_x.iter() {
s.polynomial_at(*t).print();
}
// -0.2347x^3 + 0.6338x^2 - 0.0329x + 0.9873
// 0.9096x^3 - 3.8292x^2 + 5.7691x - 1.5268
// -2.2594x^3 + 14.2342x^2 - 28.5513x + 20.2094
// Evaluation
for t in new_x.iter() {
s.eval(*t).print();
}
Ok(())
}
Implementations§
source§impl CubicSpline
impl CubicSpline
sourcepub fn from_nodes(node_x: &[f64], node_y: &[f64]) -> Result<Self>
pub fn from_nodes(node_x: &[f64], node_y: &[f64]) -> Result<Self>
§Examples
#[macro_use]
extern crate peroxide;
use peroxide::fuga::*;
fn main() -> Result<(), Box<dyn Error>> {
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));
}
Ok(())
}
sourcepub fn extend_with_nodes(
&mut self,
node_x: Vec<f64>,
node_y: Vec<f64>,
) -> Result<()>
pub fn extend_with_nodes( &mut self, node_x: Vec<f64>, node_y: Vec<f64>, ) -> Result<()>
Extends the spline with the given nodes.
§Description
The method ensures that the transition between each polynomial is smooth and that the spline
interpolation of the new nodes is calculated around x = 0
in order to avoid that
successive spline extensions with large x values become inaccurate.
Trait Implementations§
source§impl Calculus for CubicSpline
impl Calculus for CubicSpline
source§impl Clone for CubicSpline
impl Clone for CubicSpline
source§fn clone(&self) -> CubicSpline
fn clone(&self) -> CubicSpline
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CubicSpline
impl Debug for CubicSpline
source§impl Default for CubicSpline
impl Default for CubicSpline
source§fn default() -> CubicSpline
fn default() -> CubicSpline
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CubicSpline
impl<'de> Deserialize<'de> for CubicSpline
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<Vec<(Range<f64>, Polynomial)>> for CubicSpline
impl From<Vec<(Range<f64>, Polynomial)>> for CubicSpline
source§impl Index<usize> for CubicSpline
impl Index<usize> for CubicSpline
source§impl Into<Vec<(Range<f64>, Polynomial)>> for CubicSpline
impl Into<Vec<(Range<f64>, Polynomial)>> for CubicSpline
source§impl Into<Vec<Polynomial>> for CubicSpline
impl Into<Vec<Polynomial>> for CubicSpline
source§fn into(self) -> Vec<Polynomial>
fn into(self) -> Vec<Polynomial>
Converts this type into the (usually inferred) input type.
source§impl PolynomialSpline for CubicSpline
impl PolynomialSpline for CubicSpline
fn get_ranged_polynomials(&self) -> &Vec<(Range<f64>, Polynomial)>
fn polynomial_at<T: Into<f64> + Copy>(&self, x: T) -> &Polynomial
fn number_of_polynomials(&self) -> usize
Auto Trait Implementations§
impl Freeze for CubicSpline
impl RefUnwindSafe for CubicSpline
impl Send for CubicSpline
impl Sync for CubicSpline
impl Unpin for CubicSpline
impl UnwindSafe for CubicSpline
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more