Struct nalgebra::Complex [−][src]
A complex number in Cartesian form.
Representation and Foreign Function Interface Compatibility
Complex<T>
is memory layout compatible with an array [T; 2]
.
Note that Complex<F>
where F is a floating point type is only memory
layout compatible with C’s complex types, not necessarily calling
convention compatible. This means that for FFI you can only pass
Complex<F>
behind a pointer, not as a value.
Examples
Example of extern function declaration.
use num_complex::Complex; use std::os::raw::c_int; extern "C" { fn zaxpy_(n: *const c_int, alpha: *const Complex<f64>, x: *const Complex<f64>, incx: *const c_int, y: *mut Complex<f64>, incy: *const c_int); }
Fields
re: T
Real portion of the complex number
im: T
Imaginary portion of the complex number
Implementations
impl<T> Complex<T>
[src]
impl<T> Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
pub fn i() -> Complex<T>
[src]
Returns imaginary unit
pub fn norm_sqr(&self) -> T
[src]
Returns the square of the norm (since T
doesn’t necessarily
have a sqrt function), i.e. re^2 + im^2
.
pub fn scale(&self, t: T) -> Complex<T>
[src]
Multiplies self
by the scalar t
.
pub fn unscale(&self, t: T) -> Complex<T>
[src]
Divides self
by the scalar t
.
pub fn powu(&self, exp: u32) -> Complex<T>
[src]
Raises self
to an unsigned integer power.
impl<T> Complex<T> where
T: Clone + Neg<Output = T> + Num,
[src]
T: Clone + Neg<Output = T> + Num,
pub fn conj(&self) -> Complex<T>
[src]
Returns the complex conjugate. i.e. re - i im
pub fn inv(&self) -> Complex<T>
[src]
Returns 1/self
pub fn powi(&self, exp: i32) -> Complex<T>
[src]
Raises self
to a signed integer power.
impl<T> Complex<T> where
T: Clone + Signed,
[src]
T: Clone + Signed,
pub fn l1_norm(&self) -> T
[src]
Returns the L1 norm |re| + |im|
– the Manhattan distance from the origin.
impl<T> Complex<T> where
T: Clone + FloatCore,
[src]
T: Clone + FloatCore,
pub fn is_nan(self) -> bool
[src]
Checks if the given complex number is NaN
pub fn is_infinite(self) -> bool
[src]
Checks if the given complex number is infinite
pub fn is_finite(self) -> bool
[src]
Checks if the given complex number is finite
pub fn is_normal(self) -> bool
[src]
Checks if the given complex number is normal
Trait Implementations
impl<N> AbstractField<Additive, Multiplicative> for Complex<N> where
N: ClosedNeg + AbstractField<Additive, Multiplicative> + Clone + Num,
[src]
N: ClosedNeg + AbstractField<Additive, Multiplicative> + Clone + Num,
impl<N> AbstractGroup<Additive> for Complex<N> where
N: AbstractGroupAbelian<Additive>,
[src]
N: AbstractGroupAbelian<Additive>,
impl<N> AbstractGroup<Multiplicative> for Complex<N> where
N: Num + Clone + ClosedNeg,
[src]
N: Num + Clone + ClosedNeg,
impl<N> AbstractGroupAbelian<Additive> for Complex<N> where
N: AbstractGroupAbelian<Additive>,
[src]
N: AbstractGroupAbelian<Additive>,
pub fn prop_is_commutative_approx(args: (Self, Self)) -> bool where
Self: RelativeEq<Self>,
[src]
Self: RelativeEq<Self>,
pub fn prop_is_commutative(args: (Self, Self)) -> bool where
Self: Eq,
[src]
Self: Eq,
impl<N> AbstractGroupAbelian<Multiplicative> for Complex<N> where
N: Num + Clone + ClosedNeg,
[src]
N: Num + Clone + ClosedNeg,
pub fn prop_is_commutative_approx(args: (Self, Self)) -> bool where
Self: RelativeEq<Self>,
[src]
Self: RelativeEq<Self>,
pub fn prop_is_commutative(args: (Self, Self)) -> bool where
Self: Eq,
[src]
Self: Eq,
impl<N> AbstractLoop<Additive> for Complex<N> where
N: AbstractGroupAbelian<Additive>,
[src]
N: AbstractGroupAbelian<Additive>,
impl<N> AbstractLoop<Multiplicative> for Complex<N> where
N: Num + Clone + ClosedNeg,
[src]
N: Num + Clone + ClosedNeg,
impl<N> AbstractMagma<Additive> for Complex<N> where
N: AbstractMagma<Additive>,
[src]
N: AbstractMagma<Additive>,
pub fn operate(&self, lhs: &Complex<N>) -> Complex<N>
[src]
pub fn op(&self, O, lhs: &Self) -> Self
[src]
impl<N> AbstractMagma<Multiplicative> for Complex<N> where
N: Clone + Num,
[src]
N: Clone + Num,
pub fn operate(&self, lhs: &Complex<N>) -> Complex<N>
[src]
pub fn op(&self, O, lhs: &Self) -> Self
[src]
impl<N> AbstractModule<Additive, Additive, Multiplicative> for Complex<N> where
N: ClosedNeg + AbstractRingCommutative<Additive, Multiplicative> + Num,
[src]
N: ClosedNeg + AbstractRingCommutative<Additive, Multiplicative> + Num,
type AbstractRing = N
The underlying scalar field.
pub fn multiply_by(&self, r: N) -> Complex<N>
[src]
impl<N> AbstractMonoid<Additive> for Complex<N> where
N: AbstractGroupAbelian<Additive>,
[src]
N: AbstractGroupAbelian<Additive>,
pub fn prop_operating_identity_element_is_noop_approx(args: (Self,)) -> bool where
Self: RelativeEq<Self>,
[src]
Self: RelativeEq<Self>,
pub fn prop_operating_identity_element_is_noop(args: (Self,)) -> bool where
Self: Eq,
[src]
Self: Eq,
impl<N> AbstractMonoid<Multiplicative> for Complex<N> where
N: Num + Clone + ClosedNeg,
[src]
N: Num + Clone + ClosedNeg,
pub fn prop_operating_identity_element_is_noop_approx(args: (Self,)) -> bool where
Self: RelativeEq<Self>,
[src]
Self: RelativeEq<Self>,
pub fn prop_operating_identity_element_is_noop(args: (Self,)) -> bool where
Self: Eq,
[src]
Self: Eq,
impl<N> AbstractQuasigroup<Additive> for Complex<N> where
N: AbstractGroupAbelian<Additive>,
[src]
N: AbstractGroupAbelian<Additive>,
pub fn prop_inv_is_latin_square_approx(args: (Self, Self)) -> bool where
Self: RelativeEq<Self>,
[src]
Self: RelativeEq<Self>,
pub fn prop_inv_is_latin_square(args: (Self, Self)) -> bool where
Self: Eq,
[src]
Self: Eq,
impl<N> AbstractQuasigroup<Multiplicative> for Complex<N> where
N: Num + Clone + ClosedNeg,
[src]
N: Num + Clone + ClosedNeg,
pub fn prop_inv_is_latin_square_approx(args: (Self, Self)) -> bool where
Self: RelativeEq<Self>,
[src]
Self: RelativeEq<Self>,
pub fn prop_inv_is_latin_square(args: (Self, Self)) -> bool where
Self: Eq,
[src]
Self: Eq,
impl<N> AbstractRing<Additive, Multiplicative> for Complex<N> where
N: ClosedNeg + AbstractRing<Additive, Multiplicative> + Clone + Num,
[src]
N: ClosedNeg + AbstractRing<Additive, Multiplicative> + Clone + Num,
pub fn prop_mul_and_add_are_distributive_approx(
args: (Self, Self, Self)
) -> bool where
Self: RelativeEq<Self>,
[src]
args: (Self, Self, Self)
) -> bool where
Self: RelativeEq<Self>,
pub fn prop_mul_and_add_are_distributive(args: (Self, Self, Self)) -> bool where
Self: Eq,
[src]
Self: Eq,
impl<N> AbstractRingCommutative<Additive, Multiplicative> for Complex<N> where
N: ClosedNeg + AbstractRingCommutative<Additive, Multiplicative> + Clone + Num,
[src]
N: ClosedNeg + AbstractRingCommutative<Additive, Multiplicative> + Clone + Num,
pub fn prop_mul_is_commutative_approx(args: (Self, Self)) -> bool where
Self: RelativeEq<Self>,
[src]
Self: RelativeEq<Self>,
pub fn prop_mul_is_commutative(args: (Self, Self)) -> bool where
Self: Eq,
[src]
Self: Eq,
impl<N> AbstractSemigroup<Additive> for Complex<N> where
N: AbstractGroupAbelian<Additive>,
[src]
N: AbstractGroupAbelian<Additive>,
pub fn prop_is_associative_approx(args: (Self, Self, Self)) -> bool where
Self: RelativeEq<Self>,
[src]
Self: RelativeEq<Self>,
pub fn prop_is_associative(args: (Self, Self, Self)) -> bool where
Self: Eq,
[src]
Self: Eq,
impl<N> AbstractSemigroup<Multiplicative> for Complex<N> where
N: Num + Clone + ClosedNeg,
[src]
N: Num + Clone + ClosedNeg,
pub fn prop_is_associative_approx(args: (Self, Self, Self)) -> bool where
Self: RelativeEq<Self>,
[src]
Self: RelativeEq<Self>,
pub fn prop_is_associative(args: (Self, Self, Self)) -> bool where
Self: Eq,
[src]
Self: Eq,
impl<'a, T> Add<&'a Complex<T>> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Complex<T>
) -> <Complex<T> as Add<&'a Complex<T>>>::Output
[src]
self,
other: &Complex<T>
) -> <Complex<T> as Add<&'a Complex<T>>>::Output
impl<'a, T> Add<&'a T> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the +
operator.
pub fn add(self, other: &T) -> <Complex<T> as Add<&'a T>>::Output
[src]
impl<'a, 'b, T> Add<&'a T> for &'b Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the +
operator.
pub fn add(self, other: &T) -> <&'b Complex<T> as Add<&'a T>>::Output
[src]
impl<'a, 'b, T> Add<&'b Complex<T>> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the +
operator.
pub fn add(
self,
other: &Complex<T>
) -> <&'a Complex<T> as Add<&'b Complex<T>>>::Output
[src]
self,
other: &Complex<T>
) -> <&'a Complex<T> as Add<&'b Complex<T>>>::Output
impl<'a, T> Add<Complex<T>> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the +
operator.
pub fn add(
self,
other: Complex<T>
) -> <&'a Complex<T> as Add<Complex<T>>>::Output
[src]
self,
other: Complex<T>
) -> <&'a Complex<T> as Add<Complex<T>>>::Output
impl<T> Add<Complex<T>> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the +
operator.
pub fn add(self, other: Complex<T>) -> <Complex<T> as Add<Complex<T>>>::Output
[src]
impl<T> Add<T> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the +
operator.
pub fn add(self, other: T) -> <Complex<T> as Add<T>>::Output
[src]
impl<'a, T> Add<T> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the +
operator.
pub fn add(self, other: T) -> <&'a Complex<T> as Add<T>>::Output
[src]
impl<'a, T> AddAssign<&'a Complex<T>> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn add_assign(&mut self, other: &Complex<T>)
[src]
impl<'a, T> AddAssign<&'a T> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn add_assign(&mut self, other: &T)
[src]
impl<T> AddAssign<Complex<T>> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn add_assign(&mut self, other: Complex<T>)
[src]
impl<T> AddAssign<T> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn add_assign(&mut self, other: T)
[src]
impl<T, U> AsPrimitive<U> for Complex<T> where
T: AsPrimitive<U>,
U: 'static + Copy,
[src]
T: AsPrimitive<U>,
U: 'static + Copy,
impl<T> Binary for Complex<T> where
T: Binary + Num + PartialOrd<T> + Clone,
[src]
T: Binary + Num + PartialOrd<T> + Clone,
impl<T> Clone for Complex<T> where
T: Clone,
[src]
T: Clone,
impl<N> ComplexField for Complex<N> where
N: RealField,
[src]
N: RealField,
type RealField = N
Type of the coefficients of a complex number.
pub fn from_real(re: <Complex<N> as ComplexField>::RealField) -> Complex<N>
[src]
pub fn real(self) -> <Complex<N> as ComplexField>::RealField
[src]
pub fn imaginary(self) -> <Complex<N> as ComplexField>::RealField
[src]
pub fn argument(self) -> <Complex<N> as ComplexField>::RealField
[src]
pub fn modulus(self) -> <Complex<N> as ComplexField>::RealField
[src]
pub fn modulus_squared(self) -> <Complex<N> as ComplexField>::RealField
[src]
pub fn norm1(self) -> <Complex<N> as ComplexField>::RealField
[src]
pub fn recip(self) -> Complex<N>
[src]
pub fn conjugate(self) -> Complex<N>
[src]
pub fn scale(
self,
factor: <Complex<N> as ComplexField>::RealField
) -> Complex<N>
[src]
self,
factor: <Complex<N> as ComplexField>::RealField
) -> Complex<N>
pub fn unscale(
self,
factor: <Complex<N> as ComplexField>::RealField
) -> Complex<N>
[src]
self,
factor: <Complex<N> as ComplexField>::RealField
) -> Complex<N>
pub fn floor(self) -> Complex<N>
[src]
pub fn ceil(self) -> Complex<N>
[src]
pub fn round(self) -> Complex<N>
[src]
pub fn trunc(self) -> Complex<N>
[src]
pub fn fract(self) -> Complex<N>
[src]
pub fn mul_add(self, a: Complex<N>, b: Complex<N>) -> Complex<N>
[src]
pub fn abs(self) -> <Complex<N> as ComplexField>::RealField
[src]
pub fn exp2(self) -> Complex<N>
[src]
pub fn exp_m1(self) -> Complex<N>
[src]
pub fn ln_1p(self) -> Complex<N>
[src]
pub fn log2(self) -> Complex<N>
[src]
pub fn log10(self) -> Complex<N>
[src]
pub fn cbrt(self) -> Complex<N>
[src]
pub fn powi(self, n: i32) -> Complex<N>
[src]
pub fn is_finite(&self) -> bool
[src]
pub fn exp(self) -> Complex<N>
[src]
Computes e^(self)
, where e
is the base of the natural logarithm.
pub fn ln(self) -> Complex<N>
[src]
Computes the principal value of natural logarithm of self
.
This function has one branch cut:
(-∞, 0]
, continuous from above.
The branch satisfies -π ≤ arg(ln(z)) ≤ π
.
pub fn sqrt(self) -> Complex<N>
[src]
Computes the principal value of the square root of self
.
This function has one branch cut:
(-∞, 0)
, continuous from above.
The branch satisfies -π/2 ≤ arg(sqrt(z)) ≤ π/2
.
pub fn try_sqrt(self) -> Option<Complex<N>>
[src]
pub fn hypot(self, b: Complex<N>) -> <Complex<N> as ComplexField>::RealField
[src]
pub fn powf(self, exp: <Complex<N> as ComplexField>::RealField) -> Complex<N>
[src]
Raises self
to a floating point power.
pub fn log(self, base: N) -> Complex<N>
[src]
Returns the logarithm of self
with respect to an arbitrary base.
pub fn powc(self, exp: Complex<N>) -> Complex<N>
[src]
Raises self
to a complex power.
pub fn sin(self) -> Complex<N>
[src]
Computes the sine of self
.
pub fn cos(self) -> Complex<N>
[src]
Computes the cosine of self
.
pub fn sin_cos(self) -> (Complex<N>, Complex<N>)
[src]
pub fn tan(self) -> Complex<N>
[src]
Computes the tangent of self
.
pub fn asin(self) -> Complex<N>
[src]
Computes the principal value of the inverse sine of self
.
This function has two branch cuts:
(-∞, -1)
, continuous from above.(1, ∞)
, continuous from below.
The branch satisfies -π/2 ≤ Re(asin(z)) ≤ π/2
.
pub fn acos(self) -> Complex<N>
[src]
Computes the principal value of the inverse cosine of self
.
This function has two branch cuts:
(-∞, -1)
, continuous from above.(1, ∞)
, continuous from below.
The branch satisfies 0 ≤ Re(acos(z)) ≤ π
.
pub fn atan(self) -> Complex<N>
[src]
Computes the principal value of the inverse tangent of self
.
This function has two branch cuts:
(-∞i, -i]
, continuous from the left.[i, ∞i)
, continuous from the right.
The branch satisfies -π/2 ≤ Re(atan(z)) ≤ π/2
.
pub fn sinh(self) -> Complex<N>
[src]
Computes the hyperbolic sine of self
.
pub fn cosh(self) -> Complex<N>
[src]
Computes the hyperbolic cosine of self
.
pub fn sinh_cosh(self) -> (Complex<N>, Complex<N>)
[src]
pub fn tanh(self) -> Complex<N>
[src]
Computes the hyperbolic tangent of self
.
pub fn asinh(self) -> Complex<N>
[src]
Computes the principal value of inverse hyperbolic sine of self
.
This function has two branch cuts:
(-∞i, -i)
, continuous from the left.(i, ∞i)
, continuous from the right.
The branch satisfies -π/2 ≤ Im(asinh(z)) ≤ π/2
.
pub fn acosh(self) -> Complex<N>
[src]
Computes the principal value of inverse hyperbolic cosine of self
.
This function has one branch cut:
(-∞, 1)
, continuous from above.
The branch satisfies -π ≤ Im(acosh(z)) ≤ π
and 0 ≤ Re(acosh(z)) < ∞
.
pub fn atanh(self) -> Complex<N>
[src]
Computes the principal value of inverse hyperbolic tangent of self
.
This function has two branch cuts:
(-∞, -1]
, continuous from above.[1, ∞)
, continuous from below.
The branch satisfies -π/2 ≤ Im(atanh(z)) ≤ π/2
.
pub fn to_polar(self) -> (Self::RealField, Self::RealField)
[src]
pub fn to_exp(self) -> (Self::RealField, Self)
[src]
pub fn signum(self) -> Self
[src]
pub fn sinc(self) -> Self
[src]
pub fn sinhc(self) -> Self
[src]
pub fn cosc(self) -> Self
[src]
pub fn coshc(self) -> Self
[src]
impl<T> Copy for Complex<T> where
T: Copy,
[src]
T: Copy,
impl<T> Debug for Complex<T> where
T: Debug,
[src]
T: Debug,
impl<T> Default for Complex<T> where
T: Default,
[src]
T: Default,
impl<T> Display for Complex<T> where
T: Display + Num + PartialOrd<T> + Clone,
[src]
T: Display + Num + PartialOrd<T> + Clone,
impl<'a, T> Div<&'a Complex<T>> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Complex<T>
) -> <Complex<T> as Div<&'a Complex<T>>>::Output
[src]
self,
other: &Complex<T>
) -> <Complex<T> as Div<&'a Complex<T>>>::Output
impl<'a, T> Div<&'a T> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the /
operator.
pub fn div(self, other: &T) -> <Complex<T> as Div<&'a T>>::Output
[src]
impl<'a, 'b, T> Div<&'a T> for &'b Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the /
operator.
pub fn div(self, other: &T) -> <&'b Complex<T> as Div<&'a T>>::Output
[src]
impl<'a, 'b, T> Div<&'b Complex<T>> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the /
operator.
pub fn div(
self,
other: &Complex<T>
) -> <&'a Complex<T> as Div<&'b Complex<T>>>::Output
[src]
self,
other: &Complex<T>
) -> <&'a Complex<T> as Div<&'b Complex<T>>>::Output
impl<'a, T> Div<Complex<T>> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the /
operator.
pub fn div(
self,
other: Complex<T>
) -> <&'a Complex<T> as Div<Complex<T>>>::Output
[src]
self,
other: Complex<T>
) -> <&'a Complex<T> as Div<Complex<T>>>::Output
impl<T> Div<Complex<T>> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the /
operator.
pub fn div(self, other: Complex<T>) -> <Complex<T> as Div<Complex<T>>>::Output
[src]
impl<T> Div<T> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the /
operator.
pub fn div(self, other: T) -> <Complex<T> as Div<T>>::Output
[src]
impl<'a, T> Div<T> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the /
operator.
pub fn div(self, other: T) -> <&'a Complex<T> as Div<T>>::Output
[src]
impl<'a, T> DivAssign<&'a Complex<T>> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn div_assign(&mut self, other: &Complex<T>)
[src]
impl<'a, T> DivAssign<&'a T> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn div_assign(&mut self, other: &T)
[src]
impl<T> DivAssign<Complex<T>> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn div_assign(&mut self, other: Complex<T>)
[src]
impl<T> DivAssign<T> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn div_assign(&mut self, other: T)
[src]
impl<T> Eq for Complex<T> where
T: Eq,
[src]
T: Eq,
impl<'a, T> From<&'a T> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
impl<T> From<T> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
impl<T> FromPrimitive for Complex<T> where
T: FromPrimitive + Num,
[src]
T: FromPrimitive + Num,
pub fn from_usize(n: usize) -> Option<Complex<T>>
[src]
pub fn from_isize(n: isize) -> Option<Complex<T>>
[src]
pub fn from_u8(n: u8) -> Option<Complex<T>>
[src]
pub fn from_u16(n: u16) -> Option<Complex<T>>
[src]
pub fn from_u32(n: u32) -> Option<Complex<T>>
[src]
pub fn from_u64(n: u64) -> Option<Complex<T>>
[src]
pub fn from_i8(n: i8) -> Option<Complex<T>>
[src]
pub fn from_i16(n: i16) -> Option<Complex<T>>
[src]
pub fn from_i32(n: i32) -> Option<Complex<T>>
[src]
pub fn from_i64(n: i64) -> Option<Complex<T>>
[src]
pub fn from_u128(n: u128) -> Option<Complex<T>>
[src]
pub fn from_i128(n: i128) -> Option<Complex<T>>
[src]
pub fn from_f32(n: f32) -> Option<Complex<T>>
[src]
pub fn from_f64(n: f64) -> Option<Complex<T>>
[src]
impl<T> FromStr for Complex<T> where
T: FromStr + Num + Clone,
[src]
T: FromStr + Num + Clone,
type Err = ParseComplexError<<T as FromStr>::Err>
The associated error which can be returned from parsing.
pub fn from_str(s: &str) -> Result<Complex<T>, <Complex<T> as FromStr>::Err>
[src]
Parses a +/- bi
; ai +/- b
; a
; or bi
where a
and b
are of type T
impl<T> Hash for Complex<T> where
T: Hash,
[src]
T: Hash,
pub fn hash<__H>(&self, state: &mut __H) where
__H: Hasher,
[src]
__H: Hasher,
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl<N> Identity<Additive> for Complex<N> where
N: Identity<Additive>,
[src]
N: Identity<Additive>,
impl<N> Identity<Multiplicative> for Complex<N> where
N: Clone + Num,
[src]
N: Clone + Num,
impl<'a, T> Inv for &'a Complex<T> where
T: Clone + Neg<Output = T> + Num,
[src]
T: Clone + Neg<Output = T> + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn inv(self) -> <&'a Complex<T> as Inv>::Output
[src]
impl<T> Inv for Complex<T> where
T: Clone + Neg<Output = T> + Num,
[src]
T: Clone + Neg<Output = T> + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn inv(self) -> <Complex<T> as Inv>::Output
[src]
impl<N> JoinSemilattice for Complex<N> where
N: JoinSemilattice,
[src]
N: JoinSemilattice,
impl<T> LowerExp for Complex<T> where
T: LowerExp + Num + PartialOrd<T> + Clone,
[src]
T: LowerExp + Num + PartialOrd<T> + Clone,
impl<T> LowerHex for Complex<T> where
T: LowerHex + Num + PartialOrd<T> + Clone,
[src]
T: LowerHex + Num + PartialOrd<T> + Clone,
impl<N> MeetSemilattice for Complex<N> where
N: MeetSemilattice,
[src]
N: MeetSemilattice,
impl<N> Module for Complex<N> where
N: RingCommutative + NumAssign,
[src]
N: RingCommutative + NumAssign,
type Ring = N
The underlying scalar field.
impl<'a, T> Mul<&'a Complex<T>> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Complex<T>
) -> <Complex<T> as Mul<&'a Complex<T>>>::Output
[src]
self,
other: &Complex<T>
) -> <Complex<T> as Mul<&'a Complex<T>>>::Output
impl<'a, T> Mul<&'a T> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the *
operator.
pub fn mul(self, other: &T) -> <Complex<T> as Mul<&'a T>>::Output
[src]
impl<'a, 'b, T> Mul<&'a T> for &'b Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the *
operator.
pub fn mul(self, other: &T) -> <&'b Complex<T> as Mul<&'a T>>::Output
[src]
impl<'a, 'b, T> Mul<&'b Complex<T>> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the *
operator.
pub fn mul(
self,
other: &Complex<T>
) -> <&'a Complex<T> as Mul<&'b Complex<T>>>::Output
[src]
self,
other: &Complex<T>
) -> <&'a Complex<T> as Mul<&'b Complex<T>>>::Output
impl<'a, T> Mul<Complex<T>> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the *
operator.
pub fn mul(
self,
other: Complex<T>
) -> <&'a Complex<T> as Mul<Complex<T>>>::Output
[src]
self,
other: Complex<T>
) -> <&'a Complex<T> as Mul<Complex<T>>>::Output
impl<T> Mul<Complex<T>> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the *
operator.
pub fn mul(self, other: Complex<T>) -> <Complex<T> as Mul<Complex<T>>>::Output
[src]
impl<'a, T> Mul<T> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the *
operator.
pub fn mul(self, other: T) -> <&'a Complex<T> as Mul<T>>::Output
[src]
impl<T> Mul<T> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the *
operator.
pub fn mul(self, other: T) -> <Complex<T> as Mul<T>>::Output
[src]
impl<'a, 'b, T> MulAdd<&'b Complex<T>, &'a Complex<T>> for &'a Complex<T> where
T: Clone + MulAdd<T, T, Output = T> + Num,
[src]
T: Clone + MulAdd<T, T, Output = T> + Num,
type Output = Complex<T>
The resulting type after applying the fused multiply-add.
pub fn mul_add(self, other: &Complex<T>, add: &Complex<T>) -> Complex<T>
[src]
impl<T> MulAdd<Complex<T>, Complex<T>> for Complex<T> where
T: Clone + MulAdd<T, T, Output = T> + Num,
[src]
T: Clone + MulAdd<T, T, Output = T> + Num,
type Output = Complex<T>
The resulting type after applying the fused multiply-add.
pub fn mul_add(self, other: Complex<T>, add: Complex<T>) -> Complex<T>
[src]
impl<'a, 'b, T> MulAddAssign<&'a Complex<T>, &'b Complex<T>> for Complex<T> where
T: Clone + MulAddAssign<T, T> + NumAssign,
[src]
T: Clone + MulAddAssign<T, T> + NumAssign,
pub fn mul_add_assign(&mut self, other: &Complex<T>, add: &Complex<T>)
[src]
impl<T> MulAddAssign<Complex<T>, Complex<T>> for Complex<T> where
T: Clone + MulAddAssign<T, T> + NumAssign,
[src]
T: Clone + MulAddAssign<T, T> + NumAssign,
pub fn mul_add_assign(&mut self, other: Complex<T>, add: Complex<T>)
[src]
impl<'a, T> MulAssign<&'a Complex<T>> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn mul_assign(&mut self, other: &Complex<T>)
[src]
impl<'a, T> MulAssign<&'a T> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn mul_assign(&mut self, other: &T)
[src]
impl<T> MulAssign<Complex<T>> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn mul_assign(&mut self, other: Complex<T>)
[src]
impl<T> MulAssign<T> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn mul_assign(&mut self, other: T)
[src]
impl<'a, T> Neg for &'a Complex<T> where
T: Clone + Neg<Output = T> + Num,
[src]
T: Clone + Neg<Output = T> + Num,
type Output = Complex<T>
The resulting type after applying the -
operator.
pub fn neg(self) -> <&'a Complex<T> as Neg>::Output
[src]
impl<T> Neg for Complex<T> where
T: Clone + Neg<Output = T> + Num,
[src]
T: Clone + Neg<Output = T> + Num,
type Output = Complex<T>
The resulting type after applying the -
operator.
pub fn neg(self) -> <Complex<T> as Neg>::Output
[src]
impl<N> NormedSpace for Complex<N> where
N: RealField,
[src]
N: RealField,
type RealField = N
The result of the norm (not necessarily the same same as the field used by this vector space).
type ComplexField = N
The field of this space must be this complex number.
pub fn norm_squared(&self) -> <Complex<N> as NormedSpace>::RealField
[src]
pub fn norm(&self) -> <Complex<N> as NormedSpace>::RealField
[src]
pub fn normalize(&self) -> Complex<N>
[src]
pub fn normalize_mut(&mut self) -> <Complex<N> as NormedSpace>::RealField
[src]
pub fn try_normalize(
&self,
eps: <Complex<N> as NormedSpace>::RealField
) -> Option<Complex<N>>
[src]
&self,
eps: <Complex<N> as NormedSpace>::RealField
) -> Option<Complex<N>>
pub fn try_normalize_mut(
&mut self,
eps: <Complex<N> as NormedSpace>::RealField
) -> Option<<Complex<N> as NormedSpace>::RealField>
[src]
&mut self,
eps: <Complex<N> as NormedSpace>::RealField
) -> Option<<Complex<N> as NormedSpace>::RealField>
impl<T> Num for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type FromStrRadixErr = ParseComplexError<<T as Num>::FromStrRadixErr>
pub fn from_str_radix(
s: &str,
radix: u32
) -> Result<Complex<T>, <Complex<T> as Num>::FromStrRadixErr>
[src]
s: &str,
radix: u32
) -> Result<Complex<T>, <Complex<T> as Num>::FromStrRadixErr>
Parses a +/- bi
; ai +/- b
; a
; or bi
where a
and b
are of type T
impl<T> NumCast for Complex<T> where
T: NumCast + Num,
[src]
T: NumCast + Num,
pub fn from<U>(n: U) -> Option<Complex<T>> where
U: ToPrimitive,
[src]
U: ToPrimitive,
impl<T> Octal for Complex<T> where
T: Octal + Num + PartialOrd<T> + Clone,
[src]
T: Octal + Num + PartialOrd<T> + Clone,
impl<T> One for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
impl<T> PartialEq<Complex<T>> for Complex<T> where
T: PartialEq<T>,
[src]
T: PartialEq<T>,
impl<'a, 'b, T> Pow<&'b i128> for &'a Complex<T> where
T: Clone + Neg<Output = T> + Num,
[src]
T: Clone + Neg<Output = T> + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: &i128) -> <&'a Complex<T> as Pow<&'b i128>>::Output
[src]
impl<'a, 'b, T> Pow<&'b i16> for &'a Complex<T> where
T: Clone + Neg<Output = T> + Num,
[src]
T: Clone + Neg<Output = T> + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: &i16) -> <&'a Complex<T> as Pow<&'b i16>>::Output
[src]
impl<'a, 'b, T> Pow<&'b i32> for &'a Complex<T> where
T: Clone + Neg<Output = T> + Num,
[src]
T: Clone + Neg<Output = T> + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: &i32) -> <&'a Complex<T> as Pow<&'b i32>>::Output
[src]
impl<'a, 'b, T> Pow<&'b i64> for &'a Complex<T> where
T: Clone + Neg<Output = T> + Num,
[src]
T: Clone + Neg<Output = T> + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: &i64) -> <&'a Complex<T> as Pow<&'b i64>>::Output
[src]
impl<'a, 'b, T> Pow<&'b i8> for &'a Complex<T> where
T: Clone + Neg<Output = T> + Num,
[src]
T: Clone + Neg<Output = T> + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: &i8) -> <&'a Complex<T> as Pow<&'b i8>>::Output
[src]
impl<'a, 'b, T> Pow<&'b isize> for &'a Complex<T> where
T: Clone + Neg<Output = T> + Num,
[src]
T: Clone + Neg<Output = T> + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: &isize) -> <&'a Complex<T> as Pow<&'b isize>>::Output
[src]
impl<'a, 'b, T> Pow<&'b u128> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: &u128) -> <&'a Complex<T> as Pow<&'b u128>>::Output
[src]
impl<'a, 'b, T> Pow<&'b u16> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: &u16) -> <&'a Complex<T> as Pow<&'b u16>>::Output
[src]
impl<'a, 'b, T> Pow<&'b u32> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: &u32) -> <&'a Complex<T> as Pow<&'b u32>>::Output
[src]
impl<'a, 'b, T> Pow<&'b u64> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: &u64) -> <&'a Complex<T> as Pow<&'b u64>>::Output
[src]
impl<'a, 'b, T> Pow<&'b u8> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: &u8) -> <&'a Complex<T> as Pow<&'b u8>>::Output
[src]
impl<'a, 'b, T> Pow<&'b usize> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: &usize) -> <&'a Complex<T> as Pow<&'b usize>>::Output
[src]
impl<'a, T> Pow<i128> for &'a Complex<T> where
T: Clone + Neg<Output = T> + Num,
[src]
T: Clone + Neg<Output = T> + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: i128) -> <&'a Complex<T> as Pow<i128>>::Output
[src]
impl<'a, T> Pow<i16> for &'a Complex<T> where
T: Clone + Neg<Output = T> + Num,
[src]
T: Clone + Neg<Output = T> + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: i16) -> <&'a Complex<T> as Pow<i16>>::Output
[src]
impl<'a, T> Pow<i32> for &'a Complex<T> where
T: Clone + Neg<Output = T> + Num,
[src]
T: Clone + Neg<Output = T> + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: i32) -> <&'a Complex<T> as Pow<i32>>::Output
[src]
impl<'a, T> Pow<i64> for &'a Complex<T> where
T: Clone + Neg<Output = T> + Num,
[src]
T: Clone + Neg<Output = T> + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: i64) -> <&'a Complex<T> as Pow<i64>>::Output
[src]
impl<'a, T> Pow<i8> for &'a Complex<T> where
T: Clone + Neg<Output = T> + Num,
[src]
T: Clone + Neg<Output = T> + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: i8) -> <&'a Complex<T> as Pow<i8>>::Output
[src]
impl<'a, T> Pow<isize> for &'a Complex<T> where
T: Clone + Neg<Output = T> + Num,
[src]
T: Clone + Neg<Output = T> + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: isize) -> <&'a Complex<T> as Pow<isize>>::Output
[src]
impl<'a, T> Pow<u128> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: u128) -> <&'a Complex<T> as Pow<u128>>::Output
[src]
impl<'a, T> Pow<u16> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: u16) -> <&'a Complex<T> as Pow<u16>>::Output
[src]
impl<'a, T> Pow<u32> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: u32) -> <&'a Complex<T> as Pow<u32>>::Output
[src]
impl<'a, T> Pow<u64> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: u64) -> <&'a Complex<T> as Pow<u64>>::Output
[src]
impl<'a, T> Pow<u8> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: u8) -> <&'a Complex<T> as Pow<u8>>::Output
[src]
impl<'a, T> Pow<usize> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The result after applying the operator.
pub fn pow(self, exp: usize) -> <&'a Complex<T> as Pow<usize>>::Output
[src]
impl<'a, T> Product<&'a Complex<T>> for Complex<T> where
T: 'a + Clone + Num,
[src]
T: 'a + Clone + Num,
impl<T> Product<Complex<T>> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
impl<'a, T> Rem<&'a Complex<T>> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Complex<T>
) -> <Complex<T> as Rem<&'a Complex<T>>>::Output
[src]
self,
other: &Complex<T>
) -> <Complex<T> as Rem<&'a Complex<T>>>::Output
impl<'a, T> Rem<&'a T> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the %
operator.
pub fn rem(self, other: &T) -> <Complex<T> as Rem<&'a T>>::Output
[src]
impl<'a, 'b, T> Rem<&'a T> for &'b Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the %
operator.
pub fn rem(self, other: &T) -> <&'b Complex<T> as Rem<&'a T>>::Output
[src]
impl<'a, 'b, T> Rem<&'b Complex<T>> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the %
operator.
pub fn rem(
self,
other: &Complex<T>
) -> <&'a Complex<T> as Rem<&'b Complex<T>>>::Output
[src]
self,
other: &Complex<T>
) -> <&'a Complex<T> as Rem<&'b Complex<T>>>::Output
impl<'a, T> Rem<Complex<T>> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the %
operator.
pub fn rem(
self,
other: Complex<T>
) -> <&'a Complex<T> as Rem<Complex<T>>>::Output
[src]
self,
other: Complex<T>
) -> <&'a Complex<T> as Rem<Complex<T>>>::Output
impl<T> Rem<Complex<T>> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the %
operator.
pub fn rem(self, modulus: Complex<T>) -> <Complex<T> as Rem<Complex<T>>>::Output
[src]
impl<T> Rem<T> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the %
operator.
pub fn rem(self, other: T) -> <Complex<T> as Rem<T>>::Output
[src]
impl<'a, T> Rem<T> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the %
operator.
pub fn rem(self, other: T) -> <&'a Complex<T> as Rem<T>>::Output
[src]
impl<'a, T> RemAssign<&'a Complex<T>> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn rem_assign(&mut self, other: &Complex<T>)
[src]
impl<'a, T> RemAssign<&'a T> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn rem_assign(&mut self, other: &T)
[src]
impl<T> RemAssign<Complex<T>> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn rem_assign(&mut self, other: Complex<T>)
[src]
impl<T> RemAssign<T> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn rem_assign(&mut self, other: T)
[src]
impl<T> StructuralEq for Complex<T>
[src]
impl<T> StructuralPartialEq for Complex<T>
[src]
impl<'a, T> Sub<&'a Complex<T>> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Complex<T>
) -> <Complex<T> as Sub<&'a Complex<T>>>::Output
[src]
self,
other: &Complex<T>
) -> <Complex<T> as Sub<&'a Complex<T>>>::Output
impl<'a, T> Sub<&'a T> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the -
operator.
pub fn sub(self, other: &T) -> <Complex<T> as Sub<&'a T>>::Output
[src]
impl<'a, 'b, T> Sub<&'a T> for &'b Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the -
operator.
pub fn sub(self, other: &T) -> <&'b Complex<T> as Sub<&'a T>>::Output
[src]
impl<'a, 'b, T> Sub<&'b Complex<T>> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the -
operator.
pub fn sub(
self,
other: &Complex<T>
) -> <&'a Complex<T> as Sub<&'b Complex<T>>>::Output
[src]
self,
other: &Complex<T>
) -> <&'a Complex<T> as Sub<&'b Complex<T>>>::Output
impl<T> Sub<Complex<T>> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the -
operator.
pub fn sub(self, other: Complex<T>) -> <Complex<T> as Sub<Complex<T>>>::Output
[src]
impl<'a, T> Sub<Complex<T>> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the -
operator.
pub fn sub(
self,
other: Complex<T>
) -> <&'a Complex<T> as Sub<Complex<T>>>::Output
[src]
self,
other: Complex<T>
) -> <&'a Complex<T> as Sub<Complex<T>>>::Output
impl<'a, T> Sub<T> for &'a Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the -
operator.
pub fn sub(self, other: T) -> <&'a Complex<T> as Sub<T>>::Output
[src]
impl<T> Sub<T> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
type Output = Complex<T>
The resulting type after applying the -
operator.
pub fn sub(self, other: T) -> <Complex<T> as Sub<T>>::Output
[src]
impl<'a, T> SubAssign<&'a Complex<T>> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn sub_assign(&mut self, other: &Complex<T>)
[src]
impl<'a, T> SubAssign<&'a T> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn sub_assign(&mut self, other: &T)
[src]
impl<T> SubAssign<Complex<T>> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn sub_assign(&mut self, other: Complex<T>)
[src]
impl<T> SubAssign<T> for Complex<T> where
T: Clone + NumAssign,
[src]
T: Clone + NumAssign,
pub fn sub_assign(&mut self, other: T)
[src]
impl<N1, N2> SubsetOf<Complex<N2>> for Complex<N1> where
N2: SupersetOf<N1>,
[src]
N2: SupersetOf<N1>,
pub fn to_superset(&self) -> Complex<N2>
[src]
pub unsafe fn from_superset_unchecked(element: &Complex<N2>) -> Complex<N1>
[src]
pub fn is_in_subset(c: &Complex<N2>) -> bool
[src]
pub fn from_superset(element: &T) -> Option<Self>
[src]
impl<'a, T> Sum<&'a Complex<T>> for Complex<T> where
T: 'a + Clone + Num,
[src]
T: 'a + Clone + Num,
impl<T> Sum<Complex<T>> for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
impl<T> ToPrimitive for Complex<T> where
T: ToPrimitive + Num,
[src]
T: ToPrimitive + Num,
pub fn to_usize(&self) -> Option<usize>
[src]
pub fn to_isize(&self) -> Option<isize>
[src]
pub fn to_u8(&self) -> Option<u8>
[src]
pub fn to_u16(&self) -> Option<u16>
[src]
pub fn to_u32(&self) -> Option<u32>
[src]
pub fn to_u64(&self) -> Option<u64>
[src]
pub fn to_i8(&self) -> Option<i8>
[src]
pub fn to_i16(&self) -> Option<i16>
[src]
pub fn to_i32(&self) -> Option<i32>
[src]
pub fn to_i64(&self) -> Option<i64>
[src]
pub fn to_u128(&self) -> Option<u128>
[src]
pub fn to_i128(&self) -> Option<i128>
[src]
pub fn to_f32(&self) -> Option<f32>
[src]
pub fn to_f64(&self) -> Option<f64>
[src]
impl<N> TwoSidedInverse<Additive> for Complex<N> where
N: TwoSidedInverse<Additive>,
[src]
N: TwoSidedInverse<Additive>,
pub fn two_sided_inverse(&self) -> Complex<N>
[src]
pub fn two_sided_inverse_mut(&mut self)
[src]
impl<N> TwoSidedInverse<Multiplicative> for Complex<N> where
N: ClosedNeg + Clone + Num,
[src]
N: ClosedNeg + Clone + Num,
pub fn two_sided_inverse(&self) -> Complex<N>
[src]
pub fn two_sided_inverse_mut(&mut self)
[src]
impl<T> UpperExp for Complex<T> where
T: UpperExp + Num + PartialOrd<T> + Clone,
[src]
T: UpperExp + Num + PartialOrd<T> + Clone,
impl<T> UpperHex for Complex<T> where
T: UpperHex + Num + PartialOrd<T> + Clone,
[src]
T: UpperHex + Num + PartialOrd<T> + Clone,
impl<N> VectorSpace for Complex<N> where
N: Field + NumAssign,
[src]
N: Field + NumAssign,
type Field = N
The underlying scalar field.
impl<T> Zero for Complex<T> where
T: Clone + Num,
[src]
T: Clone + Num,
Auto Trait Implementations
impl<T> RefUnwindSafe for Complex<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for Complex<T> where
T: Send,
T: Send,
impl<T> Sync for Complex<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Complex<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for Complex<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> AdditiveGroup for T where
T: AbstractGroup<Additive> + AdditiveLoop + AdditiveMonoid,
[src]
T: AbstractGroup<Additive> + AdditiveLoop + AdditiveMonoid,
impl<T> AdditiveGroupAbelian for T where
T: AbstractGroupAbelian<Additive> + AdditiveGroup,
[src]
T: AbstractGroupAbelian<Additive> + AdditiveGroup,
impl<T> AdditiveLoop for T where
T: AbstractLoop<Additive> + ClosedNeg + AdditiveQuasigroup + Zero,
[src]
T: AbstractLoop<Additive> + ClosedNeg + AdditiveQuasigroup + Zero,
impl<T> AdditiveMagma for T where
T: AbstractMagma<Additive>,
[src]
T: AbstractMagma<Additive>,
impl<T> AdditiveMonoid for T where
T: AbstractMonoid<Additive> + AdditiveSemigroup + Zero,
[src]
T: AbstractMonoid<Additive> + AdditiveSemigroup + Zero,
impl<T> AdditiveQuasigroup for T where
T: AbstractQuasigroup<Additive> + ClosedSub<T> + AdditiveMagma,
[src]
T: AbstractQuasigroup<Additive> + ClosedSub<T> + AdditiveMagma,
impl<T> AdditiveSemigroup for T where
T: AbstractSemigroup<Additive> + ClosedAdd<T> + AdditiveMagma,
[src]
T: AbstractSemigroup<Additive> + ClosedAdd<T> + AdditiveMagma,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, Right> ClosedAdd<Right> for T where
T: Add<Right, Output = T> + AddAssign<Right>,
[src]
T: Add<Right, Output = T> + AddAssign<Right>,
impl<T, Right> ClosedDiv<Right> for T where
T: Div<Right, Output = T> + DivAssign<Right>,
[src]
T: Div<Right, Output = T> + DivAssign<Right>,
impl<T, Right> ClosedMul<Right> for T where
T: Mul<Right, Output = T> + MulAssign<Right>,
[src]
T: Mul<Right, Output = T> + MulAssign<Right>,
impl<T> ClosedNeg for T where
T: Neg<Output = T>,
[src]
T: Neg<Output = T>,
impl<T, Right> ClosedSub<Right> for T where
T: Sub<Right, Output = T> + SubAssign<Right>,
[src]
T: Sub<Right, Output = T> + SubAssign<Right>,
impl<T> Field for T where
T: AbstractField<Additive, Multiplicative> + MultiplicativeGroupAbelian + RingCommutative,
[src]
T: AbstractField<Additive, Multiplicative> + MultiplicativeGroupAbelian + RingCommutative,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> MultiplicativeGroup for T where
T: AbstractGroup<Multiplicative> + MultiplicativeLoop + MultiplicativeMonoid,
[src]
T: AbstractGroup<Multiplicative> + MultiplicativeLoop + MultiplicativeMonoid,
impl<T> MultiplicativeGroupAbelian for T where
T: AbstractGroupAbelian<Multiplicative> + MultiplicativeGroup,
[src]
T: AbstractGroupAbelian<Multiplicative> + MultiplicativeGroup,
impl<T> MultiplicativeLoop for T where
T: AbstractLoop<Multiplicative> + MultiplicativeQuasigroup + One,
[src]
T: AbstractLoop<Multiplicative> + MultiplicativeQuasigroup + One,
impl<T> MultiplicativeMagma for T where
T: AbstractMagma<Multiplicative>,
[src]
T: AbstractMagma<Multiplicative>,
impl<T> MultiplicativeMonoid for T where
T: AbstractMonoid<Multiplicative> + MultiplicativeSemigroup + One,
[src]
T: AbstractMonoid<Multiplicative> + MultiplicativeSemigroup + One,
impl<T> MultiplicativeQuasigroup for T where
T: AbstractQuasigroup<Multiplicative> + ClosedDiv<T> + MultiplicativeMagma,
[src]
T: AbstractQuasigroup<Multiplicative> + ClosedDiv<T> + MultiplicativeMagma,
impl<T> MultiplicativeSemigroup for T where
T: AbstractSemigroup<Multiplicative> + ClosedMul<T> + MultiplicativeMagma,
[src]
T: AbstractSemigroup<Multiplicative> + ClosedMul<T> + MultiplicativeMagma,
impl<T> NumAssign for T where
T: Num + NumAssignOps<T>,
[src]
T: Num + NumAssignOps<T>,
impl<T, Rhs> NumAssignOps<Rhs> for T where
T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,
[src]
T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,
impl<T> NumAssignRef for T where
T: NumAssign + for<'r> NumAssignOps<&'r T>,
[src]
T: NumAssign + for<'r> NumAssignOps<&'r T>,
impl<T, Rhs, Output> NumOps<Rhs, Output> for T where
T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,
[src]
T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,
impl<T> NumRef for T where
T: Num + for<'r> NumOps<&'r T, T>,
[src]
T: Num + for<'r> NumOps<&'r T, T>,
impl<T, Base> RefNum<Base> for T where
T: NumOps<Base, Base> + for<'r> NumOps<&'r Base, Base>,
[src]
T: NumOps<Base, Base> + for<'r> NumOps<&'r Base, Base>,
impl<T> Ring for T where
T: AbstractRing<Additive, Multiplicative> + AdditiveGroupAbelian + MultiplicativeMonoid,
[src]
T: AbstractRing<Additive, Multiplicative> + AdditiveGroupAbelian + MultiplicativeMonoid,
impl<T> RingCommutative for T where
T: AbstractRingCommutative<Additive, Multiplicative> + Ring,
[src]
T: AbstractRingCommutative<Additive, Multiplicative> + Ring,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
[src]
SS: SubsetOf<SP>,
pub fn to_subset(&self) -> Option<SS>
[src]
pub fn is_in_subset(&self) -> bool
[src]
pub unsafe fn to_subset_unchecked(&self) -> SS
[src]
pub fn from_subset(element: &SS) -> SP
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,