Struct peroxide::numerical::spline::CubicBSplineBases

source ·
pub struct CubicBSplineBases {
    pub ranges: Vec<Range<f64>>,
    pub bases: Vec<UnitCubicBasis>,
}
Expand description

Uniform Cubic B-Spline basis functions

§Example

use peroxide::fuga::*;
use core::ops::Range;
 
fn main() -> anyhow::Result<()> {
    let cubic_b_spline = CubicBSplineBases::from_interval((0f64, 1f64), 5);
    let x = linspace(0f64, 1f64, 1000);
    let y = cubic_b_spline.eval_vec(&x);
 
    let mut plt = Plot2D::new();
    plt.set_domain(x.clone());
 
    for basis in &cubic_b_spline.bases {
        plt.insert_image(basis.eval_vec(&x));
    }

    plt
        .insert_image(y)
        .set_xlabel(r"$x$")
        .set_ylabel(r"$y$")
        .set_style(PlotStyle::Nature)
        .tight_layout()
        .set_dpi(600)
        .set_path("example_data/cubic_b_spline.png")
        .savefig()?;
    Ok(())
}

Fields§

§ranges: Vec<Range<f64>>§bases: Vec<UnitCubicBasis>

Implementations§

source§

impl CubicBSplineBases

source

pub fn new(ranges: Vec<Range<f64>>, bases: Vec<UnitCubicBasis>) -> Self

Create new Cubic B-Spline basis functions

source

pub fn from_interval((a, b): (f64, f64), num_bases: usize) -> Self

Create new Cubic B-Spline basis functions for [a, b]

source

pub fn rescale(&mut self, scale_vec: &[f64]) -> Result<()>

Rescale all basis functions

§Arguments
  • scale_vec - scale vector
source

pub fn eval(&self, x: f64) -> f64

source

pub fn eval_vec(&self, x: &[f64]) -> Vec<f64>

Trait Implementations§

source§

impl Clone for CubicBSplineBases

source§

fn clone(&self) -> CubicBSplineBases

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for CubicBSplineBases

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for CubicBSplineBases

source§

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 Serialize for CubicBSplineBases

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for T
where T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<T> Ungil for T
where T: Send,