Struct basic_dsp_vector::numbers::Complex [] [src]

#[repr(C)]
pub struct Complex<T> { pub re: T, pub im: T, }

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

Real portion of the complex number

Imaginary portion of the complex number

Methods

impl<T> Complex<T> where
    T: Clone + Num
[src]

Create a new Complex

Returns imaginary unit

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

Multiplies self by the scalar t.

Divides self by the scalar t.

impl<T> Complex<T> where
    T: Neg<Output = T> + Clone + Num
[src]

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

Returns 1/self

impl<T> Complex<T> where
    T: Clone + Float
[src]

Calculate |self|

Calculate the principal Arg of self.

Convert to polar form (r, theta), such that self = r * exp(i * theta)

Convert a polar representation into a complex number.

Computes e^(self), where e is the base of the natural logarithm.

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)) ≤ π.

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.

Raises self to a floating point power.

Returns the logarithm of self with respect to an arbitrary base.

Raises self to a complex power.

Raises a floating point number to the complex power self.

Computes the sine of self.

Computes the cosine of self.

Computes the tangent of self.

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.

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)) ≤ π.

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.

Computes the hyperbolic sine of self.

Computes the hyperbolic cosine of self.

Computes the hyperbolic tangent of self.

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.

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)) < ∞.

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.

Checks if the given complex number is NaN

Checks if the given complex number is infinite

Checks if the given complex number is finite

Checks if the given complex number is normal

Trait Implementations

impl<T> Decodable for Complex<T> where
    T: Decodable
[src]

impl<T> LowerHex for Complex<T> where
    T: LowerHex + Num + PartialOrd<T> + Clone
[src]

impl<T> Display for Complex<T> where
    T: Display + Num + PartialOrd<T> + Clone
[src]

impl<T> Default for Complex<T> where
    T: Default
[src]

impl<T> Octal for Complex<T> where
    T: Octal + Num + PartialOrd<T> + Clone
[src]

impl<T> FromStr for Complex<T> where
    T: FromStr + Num + Clone
[src]

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

impl<T> Eq for Complex<T> where
    T: Eq
[src]

impl<T> Copy for Complex<T> where
    T: Copy
[src]

impl<T> UpperExp for Complex<T> where
    T: UpperExp + Num + PartialOrd<T> + Clone
[src]

impl<T> Mul<T> for Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the * operator

The method for the * operator

impl<'a, T> Mul<T> for &'a Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the * operator

The method for the * operator

impl<'a, T> Mul<&'a Complex<T>> for Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the * operator

The method for the * operator

impl<'a, 'b, T> Mul<&'a T> for &'b Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the * operator

The method for the * operator

impl<'a, T> Mul<&'a T> for Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the * operator

The method for the * operator

impl<T> Mul<Complex<T>> for Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the * operator

The method for the * operator

impl<'a, 'b, T> Mul<&'b Complex<T>> for &'a Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the * operator

The method for the * operator

impl<'a, T> Mul<Complex<T>> for &'a Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the * operator

The method for the * operator

impl<'a, T> DivAssign<&'a T> for Complex<T> where
    T: Clone + NumAssign
[src]

impl<T> DivAssign<Complex<T>> for Complex<T> where
    T: Clone + NumAssign
[src]

impl<'a, T> DivAssign<&'a Complex<T>> for Complex<T> where
    T: Clone + NumAssign
[src]

impl<T> DivAssign<T> for Complex<T> where
    T: Clone + NumAssign
[src]

impl<T> LowerExp for Complex<T> where
    T: LowerExp + Num + PartialOrd<T> + Clone
[src]

impl<'a, T> AddAssign<&'a T> for Complex<T> where
    T: Clone + NumAssign
[src]

impl<T> AddAssign<Complex<T>> for Complex<T> where
    T: Clone + NumAssign
[src]

impl<T> AddAssign<T> for Complex<T> where
    T: Clone + NumAssign
[src]

impl<'a, T> AddAssign<&'a Complex<T>> for Complex<T> where
    T: Clone + NumAssign
[src]

impl<T> Debug for Complex<T> where
    T: Debug
[src]

Formats the value using the given formatter.

impl<T> One for Complex<T> where
    T: Clone + Num
[src]

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

impl<'a, T> Sub<T> for &'a Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the - operator

The method for the - operator

impl<'a, T> Sub<&'a Complex<T>> for Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the - operator

The method for the - operator

impl<'a, 'b, T> Sub<&'a T> for &'b Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the - operator

The method for the - operator

impl<'a, T> Sub<&'a T> for Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the - operator

The method for the - operator

impl<'a, 'b, T> Sub<&'b Complex<T>> for &'a Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the - operator

The method for the - operator

impl<T> Sub<T> for Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the - operator

The method for the - operator

impl<T> Sub<Complex<T>> for Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the - operator

The method for the - operator

impl<'a, T> Sub<Complex<T>> for &'a Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the - operator

The method for the - operator

impl<T> Add<Complex<T>> for Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the + operator

The method for the + operator

impl<'a, 'b, T> Add<&'b Complex<T>> for &'a Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the + operator

The method for the + operator

impl<'a, T> Add<&'a Complex<T>> for Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the + operator

The method for the + operator

impl<'a, T> Add<T> for &'a Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the + operator

The method for the + operator

impl<'a, T> Add<&'a T> for Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the + operator

The method for the + operator

impl<'a, T> Add<Complex<T>> for &'a Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the + operator

The method for the + operator

impl<'a, 'b, T> Add<&'a T> for &'b Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the + operator

The method for the + operator

impl<T> Add<T> for Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the + operator

The method for the + operator

impl<T> Div<Complex<T>> for Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the / operator

The method for the / operator

impl<'a, T> Div<&'a Complex<T>> for Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the / operator

The method for the / operator

impl<'a, T> Div<Complex<T>> for &'a Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the / operator

The method for the / operator

impl<'a, 'b, T> Div<&'a T> for &'b Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the / operator

The method for the / operator

impl<T> Div<T> for Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the / operator

The method for the / operator

impl<'a, 'b, T> Div<&'b Complex<T>> for &'a Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the / operator

The method for the / operator

impl<'a, T> Div<T> for &'a Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the / operator

The method for the / operator

impl<'a, T> Div<&'a T> for Complex<T> where
    T: Clone + Num
[src]

The resulting type after applying the / operator

The method for the / operator

impl<'a, T> From<&'a T> for Complex<T> where
    T: Clone + Num
[src]

Performs the conversion.

impl<T> From<T> for Complex<T> where
    T: Clone + Num
[src]

Performs the conversion.

impl<T> UpperHex for Complex<T> where
    T: UpperHex + Num + PartialOrd<T> + Clone
[src]

impl<T> Zero for Complex<T> where
    T: Clone + Num
[src]

impl<T> Binary for Complex<T> where
    T: Binary + Num + PartialOrd<T> + Clone
[src]

impl<'a, T> MulAssign<&'a T> for Complex<T> where
    T: Clone + NumAssign
[src]

impl<'a, T> MulAssign<&'a Complex<T>> for Complex<T> where
    T: Clone + NumAssign
[src]

impl<T> MulAssign<Complex<T>> for Complex<T> where
    T: Clone + NumAssign
[src]

impl<T> MulAssign<T> for Complex<T> where
    T: Clone + NumAssign
[src]

impl<T> SubAssign<Complex<T>> for Complex<T> where
    T: Clone + NumAssign
[src]

impl<'a, T> SubAssign<&'a T> for Complex<T> where
    T: Clone + NumAssign
[src]

impl<'a, T> SubAssign<&'a Complex<T>> for Complex<T> where
    T: Clone + NumAssign
[src]

impl<T> SubAssign<T> for Complex<T> where
    T: Clone + NumAssign
[src]

impl<T> PartialEq<Complex<T>> for Complex<T> where
    T: PartialEq<T>, 
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'a, T> Neg for &'a Complex<T> where
    T: Neg<Output = T> + Clone + Num
[src]

impl<T> Neg for Complex<T> where
    T: Neg<Output = T> + Clone + Num
[src]

impl<T> Hash for Complex<T> where
    T: Hash
[src]

impl<T> Encodable for Complex<T> where
    T: Encodable
[src]

impl<T> Clone for Complex<T> where
    T: Clone
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T> Zero for Complex<T> where
    T: DspNumber
[src]