num_complex

Type Alias Complex32

Source
pub type Complex32 = Complex<f32>;
Expand description

Alias for a Complex<f32>

Aliased Type§

struct Complex32 {
    pub re: f32,
    pub im: f32,
}

Fields§

§re: f32

Real portion of the complex number

§im: f32

Imaginary portion of the complex number

Implementations

Source§

impl<T: ConstZero> Complex<T>

Source

pub const ZERO: Self = _

A constant Complex 0.

Source§

impl<T: ConstOne + ConstZero> Complex<T>

Source

pub const ONE: Self = _

A constant Complex 1.

Source

pub const I: Self = _

A constant Complex i, the imaginary unit.

Source§

impl<T> Complex<T>

Source

pub const fn new(re: T, im: T) -> Self

Create a new Complex

Source§

impl<T: Clone + Num> Complex<T>

Source

pub fn i() -> Self

Returns the imaginary unit.

See also Complex::I.

Source

pub fn norm_sqr(&self) -> T

Returns the square of the norm (since T doesn’t necessarily have a sqrt function), i.e. re^2 + im^2.

Source

pub fn scale(&self, t: T) -> Self

Multiplies self by the scalar t.

Source

pub fn unscale(&self, t: T) -> Self

Divides self by the scalar t.

Source

pub fn powu(&self, exp: u32) -> Self

Raises self to an unsigned integer power.

Source§

impl<T: Clone + Num + Neg<Output = T>> Complex<T>

Source

pub fn conj(&self) -> Self

Returns the complex conjugate. i.e. re - i im

Source

pub fn inv(&self) -> Self

Returns 1/self

Source

pub fn powi(&self, exp: i32) -> Self

Raises self to a signed integer power.

Source§

impl<T: Clone + Signed> Complex<T>

Source

pub fn l1_norm(&self) -> T

Returns the L1 norm |re| + |im| – the Manhattan distance from the origin.

Source§

impl<T: FloatCore> Complex<T>

Source

pub fn is_nan(self) -> bool

Checks if the given complex number is NaN

Source

pub fn is_infinite(self) -> bool

Checks if the given complex number is infinite

Source

pub fn is_finite(self) -> bool

Checks if the given complex number is finite

Source

pub fn is_normal(self) -> bool

Checks if the given complex number is normal

Trait Implementations

Source§

impl<'a, T: Clone + Num> Add<&'a Complex<T>> for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the + operator.
Source§

fn add(self, other: &Complex<T>) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a, T: Clone + Num> Add<&'a T> for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the + operator.
Source§

fn add(self, other: &T) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Clone + Num> Add<T> for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the + operator.
Source§

fn add(self, other: T) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Clone + Num> Add for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the + operator.
Source§

fn add(self, other: Self) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a, T: Clone + NumAssign> AddAssign<&'a Complex<T>> for Complex<T>

Source§

fn add_assign(&mut self, other: &Self)

Performs the += operation. Read more
Source§

impl<'a, T: Clone + NumAssign> AddAssign<&'a T> for Complex<T>

Source§

fn add_assign(&mut self, other: &T)

Performs the += operation. Read more
Source§

impl<T: Clone + NumAssign> AddAssign<T> for Complex<T>

Source§

fn add_assign(&mut self, other: T)

Performs the += operation. Read more
Source§

impl<T: Clone + NumAssign> AddAssign for Complex<T>

Source§

fn add_assign(&mut self, other: Self)

Performs the += operation. Read more
Source§

impl<T, U> AsPrimitive<U> for Complex<T>
where T: AsPrimitive<U>, U: 'static + Copy,

Source§

fn as_(self) -> U

Convert a value to another, using the as operator.
Source§

impl<T> Binary for Complex<T>
where T: Binary + Num + PartialOrd + Clone,

Source§

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

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

impl<T: Clone> Clone for Complex<T>

Source§

fn clone(&self) -> Complex<T>

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<T: Clone + Num + ConstOne + ConstZero> ConstOne for Complex<T>

Source§

const ONE: Self = Self::ONE

The multiplicative identity element of Self, 1.
Source§

impl<T: Clone + Num + ConstZero> ConstZero for Complex<T>

Source§

const ZERO: Self = Self::ZERO

The additive identity element of Self, 0.
Source§

impl<T: Debug> Debug for Complex<T>

Source§

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

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

impl<T: Default> Default for Complex<T>

Source§

fn default() -> Complex<T>

Returns the “default value” for a type. Read more
Source§

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

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<T> Display for Complex<T>
where T: Display + Num + PartialOrd + Clone,

Source§

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

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

impl<'a, T: Clone + Num> Div<&'a Complex<T>> for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the / operator.
Source§

fn div(self, other: &Complex<T>) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a, T: Clone + Num> Div<&'a T> for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the / operator.
Source§

fn div(self, other: &T) -> Self::Output

Performs the / operation. Read more
Source§

impl<T: Clone + Num> Div<T> for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the / operator.
Source§

fn div(self, other: T) -> Self::Output

Performs the / operation. Read more
Source§

impl<T: Clone + Num> Div for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the / operator.
Source§

fn div(self, other: Self) -> Self::Output

Performs the / operation. Read more
Source§

impl<'a, T: Clone + NumAssign> DivAssign<&'a Complex<T>> for Complex<T>

Source§

fn div_assign(&mut self, other: &Self)

Performs the /= operation. Read more
Source§

impl<'a, T: Clone + NumAssign> DivAssign<&'a T> for Complex<T>

Source§

fn div_assign(&mut self, other: &T)

Performs the /= operation. Read more
Source§

impl<T: Clone + NumAssign> DivAssign<T> for Complex<T>

Source§

fn div_assign(&mut self, other: T)

Performs the /= operation. Read more
Source§

impl<T: Clone + NumAssign> DivAssign for Complex<T>

Source§

fn div_assign(&mut self, other: Self)

Performs the /= operation. Read more
Source§

impl<'a, T: Clone + Num> From<&'a T> for Complex<T>

Source§

fn from(re: &T) -> Self

Converts to this type from the input type.
Source§

impl<T: Clone + Num> From<T> for Complex<T>

Source§

fn from(re: T) -> Self

Converts to this type from the input type.
Source§

impl<T: FromPrimitive + Num> FromPrimitive for Complex<T>

Source§

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

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>

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>

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

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>

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>

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_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 more
Source§

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

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
Source§

impl<T> FromStr for Complex<T>
where T: FromStr + Num + Clone,

Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a +/- bi; ai +/- b; a; or bi where a and b are of type T

Source§

type Err = ParseComplexError<<T as FromStr>::Err>

The associated error which can be returned from parsing.
Source§

impl<T: Hash> Hash for Complex<T>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<T: Clone + Num + Neg<Output = T>> Inv for Complex<T>

Source§

type Output = Complex<T>

The result after applying the operator.
Source§

fn inv(self) -> Self::Output

Returns the multiplicative inverse of self. Read more
Source§

impl<T> LowerExp for Complex<T>
where T: LowerExp + Num + PartialOrd + Clone,

Source§

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

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

impl<T> LowerHex for Complex<T>
where T: LowerHex + Num + PartialOrd + Clone,

Source§

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

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

impl<'a, T: Clone + Num> Mul<&'a Complex<T>> for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &Complex<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a, T: Clone + Num> Mul<&'a T> for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &T) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Clone + Num> Mul<T> for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the * operator.
Source§

fn mul(self, other: T) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Clone + Num> Mul for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the * operator.
Source§

fn mul(self, other: Self) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Clone + Num + MulAdd<Output = T>> MulAdd for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the fused multiply-add.
Source§

fn mul_add(self, other: Complex<T>, add: Complex<T>) -> Complex<T>

Performs the fused multiply-add operation (self * a) + b
Source§

impl<'a, 'b, T: Clone + NumAssign + MulAddAssign> MulAddAssign<&'a Complex<T>, &'b Complex<T>> for Complex<T>

Source§

fn mul_add_assign(&mut self, other: &Complex<T>, add: &Complex<T>)

Performs the fused multiply-add assignment operation *self = (*self * a) + b
Source§

impl<T: Clone + NumAssign + MulAddAssign> MulAddAssign for Complex<T>

Source§

fn mul_add_assign(&mut self, other: Complex<T>, add: Complex<T>)

Performs the fused multiply-add assignment operation *self = (*self * a) + b
Source§

impl<'a, T: Clone + NumAssign> MulAssign<&'a Complex<T>> for Complex<T>

Source§

fn mul_assign(&mut self, other: &Self)

Performs the *= operation. Read more
Source§

impl<'a, T: Clone + NumAssign> MulAssign<&'a T> for Complex<T>

Source§

fn mul_assign(&mut self, other: &T)

Performs the *= operation. Read more
Source§

impl<T: Clone + NumAssign> MulAssign<T> for Complex<T>

Source§

fn mul_assign(&mut self, other: T)

Performs the *= operation. Read more
Source§

impl<T: Clone + NumAssign> MulAssign for Complex<T>

Source§

fn mul_assign(&mut self, other: Self)

Performs the *= operation. Read more
Source§

impl<T: Clone + Num + Neg<Output = T>> Neg for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
Source§

impl<T: Num + Clone> Num for Complex<T>

Source§

fn from_str_radix(s: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Parses a +/- bi; ai +/- b; a; or bi where a and b are of type T

radix must be <= 18; larger radix would include i and j as digits, which cannot be supported.

The conversion returns an error if 18 <= radix <= 36; it panics if radix > 36.

The elements of T are parsed using Num::from_str_radix too, and errors (or panics) from that are reflected here as well.

Source§

type FromStrRadixErr = ParseComplexError<<T as Num>::FromStrRadixErr>

Source§

impl<T: NumCast + Num> NumCast for Complex<T>

Source§

fn from<U: ToPrimitive>(n: U) -> Option<Self>

Creates a number from another value that can be converted into a primitive via the ToPrimitive trait. If the source value cannot be represented by the target type, then None is returned. Read more
Source§

impl<T> Octal for Complex<T>
where T: Octal + Num + PartialOrd + Clone,

Source§

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

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

impl<T: Clone + Num> One for Complex<T>

Source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
Source§

fn is_one(&self) -> bool

Returns true if self is equal to the multiplicative identity. Read more
Source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
Source§

impl<T: PartialEq> PartialEq for Complex<T>

Source§

fn eq(&self, other: &Complex<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'a, T: 'a + Num + Clone> Product<&'a Complex<T>> for Complex<T>

Source§

fn product<I>(iter: I) -> Self
where I: Iterator<Item = &'a Complex<T>>,

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl<T: Num + Clone> Product for Complex<T>

Source§

fn product<I>(iter: I) -> Self
where I: Iterator<Item = Self>,

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl<'a, T: Clone + Num> Rem<&'a Complex<T>> for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the % operator.
Source§

fn rem(self, other: &Complex<T>) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a, T: Clone + Num> Rem<&'a T> for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the % operator.
Source§

fn rem(self, other: &T) -> Self::Output

Performs the % operation. Read more
Source§

impl<T: Clone + Num> Rem<T> for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the % operator.
Source§

fn rem(self, other: T) -> Self::Output

Performs the % operation. Read more
Source§

impl<T: Clone + Num> Rem for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the % operator.
Source§

fn rem(self, modulus: Self) -> Self::Output

Performs the % operation. Read more
Source§

impl<'a, T: Clone + NumAssign> RemAssign<&'a Complex<T>> for Complex<T>

Source§

fn rem_assign(&mut self, other: &Self)

Performs the %= operation. Read more
Source§

impl<'a, T: Clone + NumAssign> RemAssign<&'a T> for Complex<T>

Source§

fn rem_assign(&mut self, other: &T)

Performs the %= operation. Read more
Source§

impl<T: Clone + NumAssign> RemAssign<T> for Complex<T>

Source§

fn rem_assign(&mut self, other: T)

Performs the %= operation. Read more
Source§

impl<T: Clone + NumAssign> RemAssign for Complex<T>

Source§

fn rem_assign(&mut self, modulus: Self)

Performs the %= operation. Read more
Source§

impl<T> Serialize for Complex<T>
where T: Serialize,

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

impl<'a, T: Clone + Num> Sub<&'a Complex<T>> for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &Complex<T>) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a, T: Clone + Num> Sub<&'a T> for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &T) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Clone + Num> Sub<T> for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the - operator.
Source§

fn sub(self, other: T) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Clone + Num> Sub for Complex<T>

Source§

type Output = Complex<T>

The resulting type after applying the - operator.
Source§

fn sub(self, other: Self) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a, T: Clone + NumAssign> SubAssign<&'a Complex<T>> for Complex<T>

Source§

fn sub_assign(&mut self, other: &Self)

Performs the -= operation. Read more
Source§

impl<'a, T: Clone + NumAssign> SubAssign<&'a T> for Complex<T>

Source§

fn sub_assign(&mut self, other: &T)

Performs the -= operation. Read more
Source§

impl<T: Clone + NumAssign> SubAssign<T> for Complex<T>

Source§

fn sub_assign(&mut self, other: T)

Performs the -= operation. Read more
Source§

impl<T: Clone + NumAssign> SubAssign for Complex<T>

Source§

fn sub_assign(&mut self, other: Self)

Performs the -= operation. Read more
Source§

impl<'a, T: 'a + Num + Clone> Sum<&'a Complex<T>> for Complex<T>

Source§

fn sum<I>(iter: I) -> Self
where I: Iterator<Item = &'a Complex<T>>,

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl<T: Num + Clone> Sum for Complex<T>

Source§

fn sum<I>(iter: I) -> Self
where I: Iterator<Item = Self>,

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl<T: ToPrimitive + Num> ToPrimitive for Complex<T>

Source§

fn to_usize(&self) -> Option<usize>

Converts the value of self to a usize. If the value cannot be represented by a usize, then None is returned.
Source§

fn to_isize(&self) -> Option<isize>

Converts the value of self to an isize. If the value cannot be represented by an isize, then None is returned.
Source§

fn to_u8(&self) -> Option<u8>

Converts the value of self to a u8. If the value cannot be represented by a u8, then None is returned.
Source§

fn to_u16(&self) -> Option<u16>

Converts the value of self to a u16. If the value cannot be represented by a u16, then None is returned.
Source§

fn to_u32(&self) -> Option<u32>

Converts the value of self to a u32. If the value cannot be represented by a u32, then None is returned.
Source§

fn to_u64(&self) -> Option<u64>

Converts the value of self to a u64. If the value cannot be represented by a u64, then None is returned.
Source§

fn to_i8(&self) -> Option<i8>

Converts the value of self to an i8. If the value cannot be represented by an i8, then None is returned.
Source§

fn to_i16(&self) -> Option<i16>

Converts the value of self to an i16. If the value cannot be represented by an i16, then None is returned.
Source§

fn to_i32(&self) -> Option<i32>

Converts the value of self to an i32. If the value cannot be represented by an i32, then None is returned.
Source§

fn to_i64(&self) -> Option<i64>

Converts the value of self to an i64. If the value cannot be represented by an i64, then None is returned.
Source§

fn to_u128(&self) -> Option<u128>

Converts the value of self to a u128. If the value cannot be represented by a u128 (u64 under the default implementation), then None is returned. Read more
Source§

fn to_i128(&self) -> Option<i128>

Converts the value of self to an i128. If the value cannot be represented by an i128 (i64 under the default implementation), then None is returned. Read more
Source§

fn to_f32(&self) -> Option<f32>

Converts the value of self to an f32. Overflows may map to positive or negative inifinity, otherwise None is returned if the value cannot be represented by an f32.
Source§

fn to_f64(&self) -> Option<f64>

Converts the value of self to an f64. Overflows may map to positive or negative inifinity, otherwise None is returned if the value cannot be represented by an f64. Read more
Source§

impl<T> UpperExp for Complex<T>
where T: UpperExp + Num + PartialOrd + Clone,

Source§

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

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

impl<T> UpperHex for Complex<T>
where T: UpperHex + Num + PartialOrd + Clone,

Source§

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

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

impl<T: Clone + Num> Zero for Complex<T>

Source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl<T: Copy> Copy for Complex<T>

Source§

impl<T: Eq> Eq for Complex<T>

Source§

impl<T> StructuralPartialEq for Complex<T>