pub struct Dual3<T, F = T> {
pub re: T,
pub v1: T,
pub v2: T,
pub v3: T,
/* private fields */
}Expand description
A scalar third order dual number for the calculation of third derivatives.
Fields§
§re: TReal part of the third order dual number
v1: TFirst derivative part of the third order dual number
v2: TSecond derivative part of the third order dual number
v3: TThird derivative part of the third order dual number
Implementations§
Trait Implementations§
source§impl<T: Copy + AddAssign, F: Float> AddAssign<Dual3<T, F>> for Dual3<T, F>
impl<T: Copy + AddAssign, F: Float> AddAssign<Dual3<T, F>> for Dual3<T, F>
source§fn add_assign(&mut self, other: Self)
fn add_assign(&mut self, other: Self)
Performs the
+= operation. Read moresource§impl<T: AddAssign<F>, F: Float> AddAssign<F> for Dual3<T, F>
impl<T: AddAssign<F>, F: Float> AddAssign<F> for Dual3<T, F>
source§fn add_assign(&mut self, other: F)
fn add_assign(&mut self, other: F)
Performs the
+= operation. Read moresource§impl<T: DualNum<F>, F: Float> DivAssign<Dual3<T, F>> for Dual3<T, F>
impl<T: DualNum<F>, F: Float> DivAssign<Dual3<T, F>> for Dual3<T, F>
source§fn div_assign(&mut self, other: Self)
fn div_assign(&mut self, other: Self)
Performs the
/= operation. Read moresource§impl<T: DualNum<F>, F: DualNumFloat> DivAssign<F> for Dual3<T, F>
impl<T: DualNum<F>, F: DualNumFloat> DivAssign<F> for Dual3<T, F>
source§fn div_assign(&mut self, other: F)
fn div_assign(&mut self, other: F)
Performs the
/= operation. Read moresource§impl<T: DualNum<F>, F: DualNumFloat> DualNum<F> for Dual3<T, F>
impl<T: DualNum<F>, F: DualNumFloat> DualNum<F> for Dual3<T, F>
source§fn sin_cos(&self) -> (Self, Self)
fn sin_cos(&self) -> (Self, Self)
Calculate sine and cosine simultaneously
source§impl<T: DualNum<F>, F: Float + FloatConst> FloatConst for Dual3<T, F>
impl<T: DualNum<F>, F: Float + FloatConst> FloatConst for Dual3<T, F>
source§impl<T: DualNum<F>, F: Float + FromPrimitive> FromPrimitive for Dual3<T, F>
impl<T: DualNum<F>, F: Float + FromPrimitive> FromPrimitive for Dual3<T, F>
source§fn from_isize(n: isize) -> Option<Self>
fn from_isize(n: isize) -> Option<Self>
Converts an
isize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_i8(n: i8) -> Option<Self>
fn from_i8(n: i8) -> Option<Self>
Converts an
i8 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_i16(n: i16) -> Option<Self>
fn from_i16(n: i16) -> Option<Self>
Converts an
i16 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_i32(n: i32) -> Option<Self>
fn from_i32(n: i32) -> Option<Self>
Converts an
i32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_i64(n: i64) -> Option<Self>
fn from_i64(n: i64) -> Option<Self>
Converts an
i64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_i128(n: i128) -> Option<Self>
fn from_i128(n: i128) -> Option<Self>
Converts an
i128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read moresource§fn from_usize(n: usize) -> Option<Self>
fn from_usize(n: usize) -> Option<Self>
Converts a
usize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_u8(n: u8) -> Option<Self>
fn from_u8(n: u8) -> Option<Self>
Converts an
u8 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_u16(n: u16) -> Option<Self>
fn from_u16(n: u16) -> Option<Self>
Converts an
u16 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_u32(n: u32) -> Option<Self>
fn from_u32(n: u32) -> Option<Self>
Converts an
u32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_u64(n: u64) -> Option<Self>
fn from_u64(n: u64) -> Option<Self>
Converts an
u64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.source§fn from_u128(n: u128) -> Option<Self>
fn from_u128(n: u128) -> Option<Self>
Converts an
u128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read moresource§impl<T: DualNum<F> + IsDerivativeZero, F: Float> IsDerivativeZero for Dual3<T, F>
impl<T: DualNum<F> + IsDerivativeZero, F: Float> IsDerivativeZero for Dual3<T, F>
fn is_derivative_zero(&self) -> bool
source§impl<T: DualNum<F>, F: Float> MulAssign<Dual3<T, F>> for Dual3<T, F>
impl<T: DualNum<F>, F: Float> MulAssign<Dual3<T, F>> for Dual3<T, F>
source§fn mul_assign(&mut self, other: Self)
fn mul_assign(&mut self, other: Self)
Performs the
*= operation. Read moresource§impl<T: DualNum<F>, F: DualNumFloat> MulAssign<F> for Dual3<T, F>
impl<T: DualNum<F>, F: DualNumFloat> MulAssign<F> for Dual3<T, F>
source§fn mul_assign(&mut self, other: F)
fn mul_assign(&mut self, other: F)
Performs the
*= operation. Read moresource§impl<T: DualNum<F> + Signed, F: Float> Num for Dual3<T, F>
impl<T: DualNum<F> + Signed, F: Float> Num for Dual3<T, F>
type FromStrRadixErr = <F as Num>::FromStrRadixErr
source§fn from_str_radix(_str: &str, _radix: u32) -> Result<Self, Self::FromStrRadixErr>
fn from_str_radix(_str: &str, _radix: u32) -> Result<Self, Self::FromStrRadixErr>
Convert from a string and radix (typically
2..=36). Read moresource§impl<T: PartialEq, F: PartialEq> PartialEq<Dual3<T, F>> for Dual3<T, F>
impl<T: PartialEq, F: PartialEq> PartialEq<Dual3<T, F>> for Dual3<T, F>
source§impl<T, F: Float> RemAssign<Dual3<T, F>> for Dual3<T, F>
impl<T, F: Float> RemAssign<Dual3<T, F>> for Dual3<T, F>
source§fn rem_assign(&mut self, _other: Self)
fn rem_assign(&mut self, _other: Self)
Performs the
%= operation. Read moresource§impl<T, F: Float> RemAssign<F> for Dual3<T, F>
impl<T, F: Float> RemAssign<F> for Dual3<T, F>
source§fn rem_assign(&mut self, _other: F)
fn rem_assign(&mut self, _other: F)
Performs the
%= operation. Read moresource§impl<T: DualNum<F>, F: DualNumFloat> Signed for Dual3<T, F>
impl<T: DualNum<F>, F: DualNumFloat> Signed for Dual3<T, F>
source§fn is_positive(&self) -> bool
fn is_positive(&self) -> bool
Returns true if the number is positive and false if the number is zero or negative.
source§fn is_negative(&self) -> bool
fn is_negative(&self) -> bool
Returns true if the number is negative and false if the number is zero or positive.
source§impl<T: Copy + SubAssign, F: Float> SubAssign<Dual3<T, F>> for Dual3<T, F>
impl<T: Copy + SubAssign, F: Float> SubAssign<Dual3<T, F>> for Dual3<T, F>
source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
Performs the
-= operation. Read moresource§impl<T: SubAssign<F>, F: Float> SubAssign<F> for Dual3<T, F>
impl<T: SubAssign<F>, F: Float> SubAssign<F> for Dual3<T, F>
source§fn sub_assign(&mut self, other: F)
fn sub_assign(&mut self, other: F)
Performs the
-= operation. Read more