Struct Cubic

Source
pub struct Cubic {
    pub c0: f64,
    pub c1: f64,
    pub c2: f64,
    pub c3: f64,
}

Fields§

§c0: f64§c1: f64§c2: f64§c3: f64

Implementations§

Source§

impl Cubic

Source

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

Source

pub fn deriv(&self) -> Quadratic

Source

pub fn max_coeff(&self) -> f64

Source

pub fn root_between_with_output_error( self, lower: f64, upper: f64, y_error: f64, ) -> f64

Source

pub fn root_between(self, lower: f64, upper: f64, x_error: f64) -> f64

Source

pub fn all_roots(self, lower: f64, upper: f64, x_error: f64) -> ArrayVec<f64, 3>

Source

pub fn all_roots_with_output_error( self, lower: f64, upper: f64, y_error: f64, ) -> ArrayVec<f64, 3>

Source

pub fn roots_between_with_output_error( self, lower: f64, upper: f64, y_error: f64, ) -> ArrayVec<f64, 3>

Computes all roots between lower and upper, to the desired accuracy.

“Accuracy” is measured with respect to the cubic’s value: if this cubic is called f and we find some x with |f(x)| < accuracy (and x is contained between two endpoints where f has opposite signs) then we’ll call x a root.

We make no guarantees about multiplicity. In fact, if there’s a double-root that isn’t a triple-root (and therefore has no sign change nearby) then there’s a good chance we miss it altogether. This is fine if you’re using this root-finding to optimize a quartic, because double-roots of the derivative aren’t local extrema.

Source

pub fn roots_blinn(&self) -> ArrayVec<f64, 3>

Trait Implementations§

Source§

impl Clone for Cubic

Source§

fn clone(&self) -> Cubic

Returns a duplicate 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 Cubic

Source§

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

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

impl Div<f64> for Cubic

Source§

type Output = Cubic

The resulting type after applying the / operator.
Source§

fn div(self, rhs: f64) -> Cubic

Performs the / operation. Read more
Source§

impl Mul<f64> for Cubic

Source§

type Output = Cubic

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: f64) -> Cubic

Performs the * operation. Read more
Source§

impl Copy for Cubic

Auto Trait Implementations§

§

impl Freeze for Cubic

§

impl RefUnwindSafe for Cubic

§

impl Send for Cubic

§

impl Sync for Cubic

§

impl Unpin for Cubic

§

impl UnwindSafe for Cubic

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
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> ToOwned for T
where T: Clone,

Source§

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>,

Source§

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>,

Source§

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.