pub struct Polynomial<const SIZE: usize> {
pub coefficients: [f64; SIZE],
}
Expand description
Polynomial is a statically allocated polynomial.
Fields§
§coefficients: [f64; SIZE]
Coefficients are orders by their power, e.g. index 0 is to the power 0, 1 is linear, 2 is quadratic, etc.
Implementations§
Source§impl<const SIZE: usize> Polynomial<SIZE>
impl<const SIZE: usize> Polynomial<SIZE>
pub fn from_most_significant(coeffs: [f64; SIZE]) -> Self
Sourcepub fn eval_n_deriv(&self, x: f64) -> (f64, f64)
pub fn eval_n_deriv(&self, x: f64) -> (f64, f64)
Evaluate the polynomial and its derivative at the provided position
Sourcepub fn zero_power(&mut self, i: usize)
pub fn zero_power(&mut self, i: usize)
Set the i-th power of this polynomial to zero (e.g. if i=0, set the x^0 coefficient to zero, i.e. the constant part goes to zero)
Sourcepub fn zero_below_tolerance(&mut self, tol: f64)
pub fn zero_below_tolerance(&mut self, tol: f64)
Set all of the coefficients below this tolerance to zero
Trait Implementations§
Source§impl<const S1: usize, const S2: usize> Add<Polynomial<S1>> for Polynomial<S2>
impl<const S1: usize, const S2: usize> Add<Polynomial<S1>> for Polynomial<S2>
Source§fn add(self, other: Polynomial<S1>) -> Self::Output
fn add(self, other: Polynomial<S1>) -> Self::Output
Add Self and Other, IF S2 >= S1 (else panic!)
Source§type Output = Polynomial<S1>
type Output = Polynomial<S1>
The resulting type after applying the
+
operator.Source§impl<const SIZE: usize> AddAssign<f64> for Polynomial<SIZE>
impl<const SIZE: usize> AddAssign<f64> for Polynomial<SIZE>
Source§fn add_assign(&mut self, rhs: f64)
fn add_assign(&mut self, rhs: f64)
Performs the
+=
operation. Read moreSource§impl<const SIZE: usize> Clone for Polynomial<SIZE>
impl<const SIZE: usize> Clone for Polynomial<SIZE>
Source§fn clone(&self) -> Polynomial<SIZE>
fn clone(&self) -> Polynomial<SIZE>
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<const SIZE: usize> Debug for Polynomial<SIZE>
impl<const SIZE: usize> Debug for Polynomial<SIZE>
Source§impl<const SIZE: usize> Display for Polynomial<SIZE>
impl<const SIZE: usize> Display for Polynomial<SIZE>
Source§impl<const SIZE: usize> LowerHex for Polynomial<SIZE>
impl<const SIZE: usize> LowerHex for Polynomial<SIZE>
Source§impl<const SIZE: usize> Mul<Polynomial<SIZE>> for f64
impl<const SIZE: usize> Mul<Polynomial<SIZE>> for f64
In-place multiplication of a polynomial with an f64
Source§type Output = Polynomial<SIZE>
type Output = Polynomial<SIZE>
The resulting type after applying the
*
operator.Source§impl<const SIZE: usize> Mul<f64> for &Polynomial<SIZE>
impl<const SIZE: usize> Mul<f64> for &Polynomial<SIZE>
Clone current polynomial and then multiply it with an f64
Source§impl<const SIZE: usize> Mul<f64> for Polynomial<SIZE>
impl<const SIZE: usize> Mul<f64> for Polynomial<SIZE>
In-place multiplication of a polynomial with an f64
Source§impl<const SIZE: usize> PartialEq for Polynomial<SIZE>
impl<const SIZE: usize> PartialEq for Polynomial<SIZE>
Source§impl<const S1: usize, const S2: usize> Sub<Polynomial<S2>> for Polynomial<S1>
impl<const S1: usize, const S2: usize> Sub<Polynomial<S2>> for Polynomial<S1>
Source§type Output = Polynomial<S1>
type Output = Polynomial<S1>
The resulting type after applying the
-
operator.impl<const SIZE: usize> Copy for Polynomial<SIZE>
impl<const SIZE: usize> StructuralPartialEq for Polynomial<SIZE>
Auto Trait Implementations§
impl<const SIZE: usize> Freeze for Polynomial<SIZE>
impl<const SIZE: usize> RefUnwindSafe for Polynomial<SIZE>
impl<const SIZE: usize> Send for Polynomial<SIZE>
impl<const SIZE: usize> Sync for Polynomial<SIZE>
impl<const SIZE: usize> Unpin for Polynomial<SIZE>
impl<const SIZE: usize> UnwindSafe for Polynomial<SIZE>
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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§impl<T> Pointable for T
impl<T> Pointable for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.