Struct nalgebra::Complex

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

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§

source§

impl<T> Complex<T>

source

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

Create a new Complex

source§

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

source

pub fn i() -> Complex<T>

Returns imaginary unit

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) -> Complex<T>

Multiplies self by the scalar t.

source

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

Divides self by the scalar t.

source

pub fn powu(&self, exp: u32) -> Complex<T>

Raises self to an unsigned integer power.

source§

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

source

pub fn conj(&self) -> Complex<T>

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

source

pub fn inv(&self) -> Complex<T>

Returns 1/self

source

pub fn powi(&self, exp: i32) -> Complex<T>

Raises self to a signed integer power.

source§

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

source

pub fn l1_norm(&self) -> T

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

source§

impl<T> Complex<T>
where T: Float,

source

pub fn cis(phase: T) -> Complex<T>

Create a new Complex with a given phase: exp(i * phase). See cis (mathematics).

source

pub fn norm(self) -> T

Calculate |self|

source

pub fn arg(self) -> T

Calculate the principal Arg of self.

source

pub fn to_polar(self) -> (T, T)

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

source

pub fn from_polar(r: T, theta: T) -> Complex<T>

Convert a polar representation into a complex number.

source

pub fn exp(self) -> Complex<T>

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

source

pub fn ln(self) -> Complex<T>

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

source

pub fn sqrt(self) -> Complex<T>

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.

source

pub fn cbrt(self) -> Complex<T>

Computes the principal value of the cube root of self.

This function has one branch cut:

  • (-∞, 0), continuous from above.

The branch satisfies -π/3 ≤ arg(cbrt(z)) ≤ π/3.

Note that this does not match the usual result for the cube root of negative real numbers. For example, the real cube root of -8 is -2, but the principal complex cube root of -8 is 1 + i√3.

source

pub fn powf(self, exp: T) -> Complex<T>

Raises self to a floating point power.

source

pub fn log(self, base: T) -> Complex<T>

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

source

pub fn powc(self, exp: Complex<T>) -> Complex<T>

Raises self to a complex power.

source

pub fn expf(self, base: T) -> Complex<T>

Raises a floating point number to the complex power self.

source

pub fn sin(self) -> Complex<T>

Computes the sine of self.

source

pub fn cos(self) -> Complex<T>

Computes the cosine of self.

source

pub fn tan(self) -> Complex<T>

Computes the tangent of self.

source

pub fn asin(self) -> Complex<T>

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.

source

pub fn acos(self) -> Complex<T>

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

source

pub fn atan(self) -> Complex<T>

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.

source

pub fn sinh(self) -> Complex<T>

Computes the hyperbolic sine of self.

source

pub fn cosh(self) -> Complex<T>

Computes the hyperbolic cosine of self.

source

pub fn tanh(self) -> Complex<T>

Computes the hyperbolic tangent of self.

source

pub fn asinh(self) -> Complex<T>

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.

source

pub fn acosh(self) -> Complex<T>

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

source

pub fn atanh(self) -> Complex<T>

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.

source

pub fn finv(self) -> Complex<T>

Returns 1/self using floating-point operations.

This may be more accurate than the generic self.inv() in cases where self.norm_sqr() would overflow to ∞ or underflow to 0.

§Examples
use num_complex::Complex64;
let c = Complex64::new(1e300, 1e300);

// The generic `inv()` will overflow.
assert!(!c.inv().is_normal());

// But we can do better for `Float` types.
let inv = c.finv();
assert!(inv.is_normal());
println!("{:e}", inv);

let expected = Complex64::new(5e-301, -5e-301);
assert!((inv - expected).norm() < 1e-315);
source

pub fn fdiv(self, other: Complex<T>) -> Complex<T>

Returns self/other using floating-point operations.

This may be more accurate than the generic Div implementation in cases where other.norm_sqr() would overflow to ∞ or underflow to 0.

§Examples
use num_complex::Complex64;
let a = Complex64::new(2.0, 3.0);
let b = Complex64::new(1e300, 1e300);

// Generic division will overflow.
assert!(!(a / b).is_normal());

// But we can do better for `Float` types.
let quotient = a.fdiv(b);
assert!(quotient.is_normal());
println!("{:e}", quotient);

let expected = Complex64::new(2.5e-300, 5e-301);
assert!((quotient - expected).norm() < 1e-315);
source§

impl<T> Complex<T>
where T: Float + FloatConst,

source

pub fn exp2(self) -> Complex<T>

Computes 2^(self).

source

pub fn log2(self) -> Complex<T>

Computes the principal value of log base 2 of self.

source

pub fn log10(self) -> Complex<T>

Computes the principal value of log base 10 of self.

source§

impl<T> Complex<T>
where T: FloatCore,

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<T> AbsDiffEq for Complex<T>
where T: AbsDiffEq, <T as AbsDiffEq>::Epsilon: Clone,

§

type Epsilon = <T as AbsDiffEq>::Epsilon

Used for specifying relative comparisons.
source§

fn default_epsilon() -> <T as AbsDiffEq>::Epsilon

The default tolerance to use when testing values that are close together. Read more
source§

fn abs_diff_eq( &self, other: &Complex<T>, epsilon: <T as AbsDiffEq>::Epsilon ) -> bool

A test for equality that uses the absolute difference to compute the approximate equality of two numbers.
source§

fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool

The inverse of AbsDiffEq::abs_diff_eq.
source§

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

§

type Output = Complex<T>

The resulting type after applying the + operator.
source§

fn add( self, other: &Complex<T> ) -> <&'a Complex<T> as Add<&'b Complex<T>>>::Output

Performs the + operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the + operator.
source§

fn add(self, other: &Complex<T>) -> <Complex<T> as Add<&'a Complex<T>>>::Output

Performs the + operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the + operator.
source§

fn add(self, other: &T) -> <&'b Complex<T> as Add<&'a T>>::Output

Performs the + operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the + operator.
source§

fn add(self, other: &T) -> <Complex<T> as Add<&'a T>>::Output

Performs the + operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the + operator.
source§

fn add(self, other: Complex<T>) -> <&'a Complex<T> as Add<Complex<T>>>::Output

Performs the + operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the + operator.
source§

fn add(self, other: T) -> <&'a Complex<T> as Add<T>>::Output

Performs the + operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the + operator.
source§

fn add(self, other: T) -> <Complex<T> as Add<T>>::Output

Performs the + operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the + operator.
source§

fn add(self, other: Complex<T>) -> <Complex<T> as Add>::Output

Performs the + operation. Read more
source§

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

source§

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

Performs the += operation. Read more
source§

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

source§

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

Performs the += operation. Read more
source§

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

source§

fn add_assign(&mut self, other: T)

Performs the += operation. Read more
source§

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

source§

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

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<(), Error>

Formats the value using the given formatter.
source§

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

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<N> ComplexField for Complex<N>
where N: RealField + PartialOrd,

source§

fn exp(self) -> Complex<N>

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

source§

fn ln(self) -> Complex<N>

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

source§

fn sqrt(self) -> Complex<N>

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.

source§

fn powf(self, exp: <Complex<N> as ComplexField>::RealField) -> Complex<N>

Raises self to a floating point power.

source§

fn log(self, base: N) -> Complex<N>

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

source§

fn powc(self, exp: Complex<N>) -> Complex<N>

Raises self to a complex power.

source§

fn sin(self) -> Complex<N>

Computes the sine of self.

source§

fn cos(self) -> Complex<N>

Computes the cosine of self.

source§

fn tan(self) -> Complex<N>

Computes the tangent of self.

source§

fn asin(self) -> Complex<N>

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.

source§

fn acos(self) -> Complex<N>

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

source§

fn atan(self) -> Complex<N>

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.

source§

fn sinh(self) -> Complex<N>

Computes the hyperbolic sine of self.

source§

fn cosh(self) -> Complex<N>

Computes the hyperbolic cosine of self.

source§

fn tanh(self) -> Complex<N>

Computes the hyperbolic tangent of self.

source§

fn asinh(self) -> Complex<N>

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.

source§

fn acosh(self) -> Complex<N>

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

source§

fn atanh(self) -> Complex<N>

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.

§

type RealField = N

source§

fn from_real(re: <Complex<N> as ComplexField>::RealField) -> Complex<N>

Builds a pure-real complex number from the given value.
source§

fn real(self) -> <Complex<N> as ComplexField>::RealField

The real part of this complex number.
source§

fn imaginary(self) -> <Complex<N> as ComplexField>::RealField

The imaginary part of this complex number.
source§

fn argument(self) -> <Complex<N> as ComplexField>::RealField

The argument of this complex number.
source§

fn modulus(self) -> <Complex<N> as ComplexField>::RealField

The modulus of this complex number.
source§

fn modulus_squared(self) -> <Complex<N> as ComplexField>::RealField

The squared modulus of this complex number.
source§

fn norm1(self) -> <Complex<N> as ComplexField>::RealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn recip(self) -> Complex<N>

source§

fn conjugate(self) -> Complex<N>

source§

fn scale(self, factor: <Complex<N> as ComplexField>::RealField) -> Complex<N>

Multiplies this complex number by factor.
source§

fn unscale(self, factor: <Complex<N> as ComplexField>::RealField) -> Complex<N>

Divides this complex number by factor.
source§

fn floor(self) -> Complex<N>

source§

fn ceil(self) -> Complex<N>

source§

fn round(self) -> Complex<N>

source§

fn trunc(self) -> Complex<N>

source§

fn fract(self) -> Complex<N>

source§

fn mul_add(self, a: Complex<N>, b: Complex<N>) -> Complex<N>

source§

fn abs(self) -> <Complex<N> as ComplexField>::RealField

The absolute value of this complex number: self / self.signum(). Read more
source§

fn exp2(self) -> Complex<N>

source§

fn exp_m1(self) -> Complex<N>

source§

fn ln_1p(self) -> Complex<N>

source§

fn log2(self) -> Complex<N>

source§

fn log10(self) -> Complex<N>

source§

fn cbrt(self) -> Complex<N>

source§

fn powi(self, n: i32) -> Complex<N>

source§

fn is_finite(&self) -> bool

source§

fn try_sqrt(self) -> Option<Complex<N>>

source§

fn hypot(self, b: Complex<N>) -> <Complex<N> as ComplexField>::RealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn sin_cos(self) -> (Complex<N>, Complex<N>)

source§

fn sinh_cosh(self) -> (Complex<N>, Complex<N>)

source§

fn to_polar(self) -> (Self::RealField, Self::RealField)

The polar form of this complex number: (modulus, arg)
source§

fn to_exp(self) -> (Self::RealField, Self)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn signum(self) -> Self

The exponential part of this complex number: self / self.modulus()
source§

fn sinc(self) -> Self

Cardinal sine
source§

fn sinhc(self) -> Self

source§

fn cosc(self) -> Self

Cardinal cos
source§

fn coshc(self) -> Self

source§

impl<T> ComplexFloat for Complex<T>
where T: Float + FloatConst,

§

type Real = T

The type used to represent the real coefficients of this complex number.
source§

fn re(self) -> <Complex<T> as ComplexFloat>::Real

Returns the real part of the number.
source§

fn im(self) -> <Complex<T> as ComplexFloat>::Real

Returns the imaginary part of the number.
source§

fn abs(self) -> <Complex<T> as ComplexFloat>::Real

Returns the absolute value of the number. See also Complex::norm
source§

fn recip(self) -> Complex<T>

Take the reciprocal (inverse) of a number, 1/x. See also Complex::finv.
source§

fn l1_norm(&self) -> <Complex<T> as ComplexFloat>::Real

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

fn is_nan(self) -> bool

Returns true if this value is NaN and false otherwise.
source§

fn is_infinite(self) -> bool

Returns true if this value is positive infinity or negative infinity and false otherwise.
source§

fn is_finite(self) -> bool

Returns true if this number is neither infinite nor NaN.
source§

fn is_normal(self) -> bool

Returns true if the number is neither zero, infinite, subnormal, or NaN.
source§

fn arg(self) -> <Complex<T> as ComplexFloat>::Real

Computes the argument of the number.
source§

fn powc( self, exp: Complex<<Complex<T> as ComplexFloat>::Real> ) -> Complex<<Complex<T> as ComplexFloat>::Real>

Raises self to a complex power.
source§

fn exp2(self) -> Complex<T>

Returns 2^(self).
source§

fn log(self, base: <Complex<T> as ComplexFloat>::Real) -> Complex<T>

Returns the logarithm of the number with respect to an arbitrary base.
source§

fn log2(self) -> Complex<T>

Returns the base 2 logarithm of the number.
source§

fn log10(self) -> Complex<T>

Returns the base 10 logarithm of the number.
source§

fn powf(self, f: <Complex<T> as ComplexFloat>::Real) -> Complex<T>

Raises self to a real power.
source§

fn sqrt(self) -> Complex<T>

Take the square root of a number.
source§

fn cbrt(self) -> Complex<T>

Take the cubic root of a number.
source§

fn exp(self) -> Complex<T>

Returns e^(self), (the exponential function).
source§

fn expf(self, base: <Complex<T> as ComplexFloat>::Real) -> Complex<T>

Returns base^(self).
source§

fn ln(self) -> Complex<T>

Returns the natural logarithm of the number.
source§

fn sin(self) -> Complex<T>

Computes the sine of a number (in radians).
source§

fn cos(self) -> Complex<T>

Computes the cosine of a number (in radians).
source§

fn tan(self) -> Complex<T>

Computes the tangent of a number (in radians).
source§

fn asin(self) -> Complex<T>

Computes the arcsine of a number. Return value is in radians in the range [-pi/2, pi/2] or NaN if the number is outside the range [-1, 1].
source§

fn acos(self) -> Complex<T>

Computes the arccosine of a number. Return value is in radians in the range [0, pi] or NaN if the number is outside the range [-1, 1].
source§

fn atan(self) -> Complex<T>

Computes the arctangent of a number. Return value is in radians in the range [-pi/2, pi/2];
source§

fn sinh(self) -> Complex<T>

Hyperbolic sine function.
source§

fn cosh(self) -> Complex<T>

Hyperbolic cosine function.
source§

fn tanh(self) -> Complex<T>

Hyperbolic tangent function.
source§

fn asinh(self) -> Complex<T>

Inverse hyperbolic sine function.
source§

fn acosh(self) -> Complex<T>

Inverse hyperbolic cosine function.
source§

fn atanh(self) -> Complex<T>

Inverse hyperbolic tangent function.
source§

fn powi(self, n: i32) -> Complex<T>

Raises self to a signed integer power.
source§

fn conj(self) -> Complex<T>

Computes the complex conjugate of the number. Read more
source§

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

source§

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

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

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

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<Complex<T>, <D as Deserializer<'de>>::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<(), Error>

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

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

§

type Output = Complex<T>

The resulting type after applying the / operator.
source§

fn div( self, other: &Complex<T> ) -> <&'a Complex<T> as Div<&'b Complex<T>>>::Output

Performs the / operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the / operator.
source§

fn div(self, other: &Complex<T>) -> <Complex<T> as Div<&'a Complex<T>>>::Output

Performs the / operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the / operator.
source§

fn div(self, other: &T) -> <&'b Complex<T> as Div<&'a T>>::Output

Performs the / operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the / operator.
source§

fn div(self, other: &T) -> <Complex<T> as Div<&'a T>>::Output

Performs the / operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the / operator.
source§

fn div(self, other: Complex<T>) -> <&'a Complex<T> as Div<Complex<T>>>::Output

Performs the / operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the / operator.
source§

fn div(self, other: T) -> <&'a Complex<T> as Div<T>>::Output

Performs the / operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the / operator.
source§

fn div(self, other: T) -> <Complex<T> as Div<T>>::Output

Performs the / operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the / operator.
source§

fn div(self, other: Complex<T>) -> <Complex<T> as Div>::Output

Performs the / operation. Read more
source§

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

source§

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

Performs the /= operation. Read more
source§

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

source§

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

Performs the /= operation. Read more
source§

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

source§

fn div_assign(&mut self, other: T)

Performs the /= operation. Read more
source§

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

source§

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

Performs the /= operation. Read more
source§

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

source§

fn from(re: &T) -> Complex<T>

Converts to this type from the input type.
source§

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

source§

fn from(re: T) -> Complex<T>

Converts to this type from the input type.
source§

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

source§

fn from_usize(n: usize) -> Option<Complex<T>>

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<Complex<T>>

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<Complex<T>>

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<Complex<T>>

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<Complex<T>>

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<Complex<T>>

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<Complex<T>>

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<Complex<T>>

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<Complex<T>>

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<Complex<T>>

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<Complex<T>>

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<Complex<T>>

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<Complex<T>>

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<Complex<T>>

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<Complex<T>, <Complex<T> as FromStr>::Err>

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

§

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

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

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

source§

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

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<'a, T> Inv for &'a Complex<T>
where T: Clone + Num + Neg<Output = T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn inv(self) -> <&'a Complex<T> as Inv>::Output

Returns the multiplicative inverse of self. Read more
source§

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

§

type Output = Complex<T>

The result after applying the operator.
source§

fn inv(self) -> <Complex<T> as Inv>::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<(), Error>

Formats the value using the given formatter.
source§

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

source§

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

Formats the value using the given formatter.
source§

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

§

type Output = Complex<T>

The resulting type after applying the * operator.
source§

fn mul( self, other: &Complex<T> ) -> <&'a Complex<T> as Mul<&'b Complex<T>>>::Output

Performs the * operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the * operator.
source§

fn mul(self, other: &Complex<T>) -> <Complex<T> as Mul<&'a Complex<T>>>::Output

Performs the * operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the * operator.
source§

fn mul(self, other: &T) -> <&'b Complex<T> as Mul<&'a T>>::Output

Performs the * operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the * operator.
source§

fn mul(self, other: &T) -> <Complex<T> as Mul<&'a T>>::Output

Performs the * operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the * operator.
source§

fn mul(self, other: Complex<T>) -> <&'a Complex<T> as Mul<Complex<T>>>::Output

Performs the * operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the * operator.
source§

fn mul(self, other: T) -> <&'a Complex<T> as Mul<T>>::Output

Performs the * operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the * operator.
source§

fn mul(self, other: T) -> <Complex<T> as Mul<T>>::Output

Performs the * operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the * operator.
source§

fn mul(self, other: Complex<T>) -> <Complex<T> as Mul>::Output

Performs the * operation. Read more
source§

impl<'a, 'b, T> MulAdd<&'b Complex<T>> for &'a Complex<T>
where T: Clone + Num + MulAdd<Output = T>,

§

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<T> MulAdd for Complex<T>
where T: Clone + Num + MulAdd<Output = T>,

§

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> 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> 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> MulAssign<&'a Complex<T>> for Complex<T>
where T: Clone + NumAssign,

source§

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

Performs the *= operation. Read more
source§

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

source§

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

Performs the *= operation. Read more
source§

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

source§

fn mul_assign(&mut self, other: T)

Performs the *= operation. Read more
source§

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

source§

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

Performs the *= operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the - operator.
source§

fn neg(self) -> <&'a Complex<T> as Neg>::Output

Performs the unary - operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the - operator.
source§

fn neg(self) -> <Complex<T> as Neg>::Output

Performs the unary - operation. Read more
source§

impl<T: SimdRealField> Normed for Complex<T>

§

type Norm = <T as SimdComplexField>::SimdRealField

The type of the norm.
source§

fn norm(&self) -> T::SimdRealField

Computes the norm.
source§

fn norm_squared(&self) -> T::SimdRealField

Computes the squared norm.
source§

fn scale_mut(&mut self, n: Self::Norm)

Multiply self by n.
source§

fn unscale_mut(&mut self, n: Self::Norm)

Divides self by n.
source§

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

source§

fn from_str_radix( 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

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.

§

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

source§

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

source§

fn from<U>(n: U) -> Option<Complex<T>>
where U: ToPrimitive,

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<(), Error>

Formats the value using the given formatter.
source§

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

source§

fn one() -> Complex<T>

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 for Complex<T>
where T: PartialEq,

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a, 'b, T> Pow<&'b Complex<T>> for &'a Complex<T>
where T: Float,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow( self, _: &'b Complex<T> ) -> <&'a Complex<T> as Pow<&'b Complex<T>>>::Output

Returns self to the power rhs. Read more
source§

impl<'b, T> Pow<&'b Complex<T>> for Complex<T>
where T: Float,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, _: &'b Complex<T>) -> <Complex<T> as Pow<&'b Complex<T>>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, 'b, T> Pow<&'b f32> for &'a Complex<T>
where T: Float, f32: Into<T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, _: &f32) -> <&'a Complex<T> as Pow<&'b f32>>::Output

Returns self to the power rhs. Read more
source§

impl<'b, T> Pow<&'b f32> for Complex<T>
where T: Float, f32: Into<T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, _: &f32) -> <Complex<T> as Pow<&'b f32>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, 'b, T> Pow<&'b f64> for &'a Complex<T>
where T: Float, f64: Into<T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, _: &f64) -> <&'a Complex<T> as Pow<&'b f64>>::Output

Returns self to the power rhs. Read more
source§

impl<'b, T> Pow<&'b f64> for Complex<T>
where T: Float, f64: Into<T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, _: &f64) -> <Complex<T> as Pow<&'b f64>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, 'b, T> Pow<&'b i128> for &'a Complex<T>
where T: Clone + Num + Neg<Output = T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: &i128) -> <&'a Complex<T> as Pow<&'b i128>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, 'b, T> Pow<&'b i16> for &'a Complex<T>
where T: Clone + Num + Neg<Output = T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: &i16) -> <&'a Complex<T> as Pow<&'b i16>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, 'b, T> Pow<&'b i32> for &'a Complex<T>
where T: Clone + Num + Neg<Output = T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: &i32) -> <&'a Complex<T> as Pow<&'b i32>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, 'b, T> Pow<&'b i64> for &'a Complex<T>
where T: Clone + Num + Neg<Output = T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: &i64) -> <&'a Complex<T> as Pow<&'b i64>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, 'b, T> Pow<&'b i8> for &'a Complex<T>
where T: Clone + Num + Neg<Output = T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: &i8) -> <&'a Complex<T> as Pow<&'b i8>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, 'b, T> Pow<&'b isize> for &'a Complex<T>
where T: Clone + Num + Neg<Output = T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: &isize) -> <&'a Complex<T> as Pow<&'b isize>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, 'b, T> Pow<&'b u128> for &'a Complex<T>
where T: Clone + Num,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: &u128) -> <&'a Complex<T> as Pow<&'b u128>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, 'b, T> Pow<&'b u16> for &'a Complex<T>
where T: Clone + Num,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: &u16) -> <&'a Complex<T> as Pow<&'b u16>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, 'b, T> Pow<&'b u32> for &'a Complex<T>
where T: Clone + Num,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: &u32) -> <&'a Complex<T> as Pow<&'b u32>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, 'b, T> Pow<&'b u64> for &'a Complex<T>
where T: Clone + Num,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: &u64) -> <&'a Complex<T> as Pow<&'b u64>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, 'b, T> Pow<&'b u8> for &'a Complex<T>
where T: Clone + Num,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: &u8) -> <&'a Complex<T> as Pow<&'b u8>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, 'b, T> Pow<&'b usize> for &'a Complex<T>
where T: Clone + Num,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: &usize) -> <&'a Complex<T> as Pow<&'b usize>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, T> Pow<Complex<T>> for &'a Complex<T>
where T: Float,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: Complex<T>) -> <&'a Complex<T> as Pow<Complex<T>>>::Output

Returns self to the power rhs. Read more
source§

impl<T> Pow<Complex<T>> for Complex<T>
where T: Float,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: Complex<T>) -> <Complex<T> as Pow<Complex<T>>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, T> Pow<f32> for &'a Complex<T>
where T: Float, f32: Into<T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: f32) -> <&'a Complex<T> as Pow<f32>>::Output

Returns self to the power rhs. Read more
source§

impl<T> Pow<f32> for Complex<T>
where T: Float, f32: Into<T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: f32) -> <Complex<T> as Pow<f32>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, T> Pow<f64> for &'a Complex<T>
where T: Float, f64: Into<T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: f64) -> <&'a Complex<T> as Pow<f64>>::Output

Returns self to the power rhs. Read more
source§

impl<T> Pow<f64> for Complex<T>
where T: Float, f64: Into<T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: f64) -> <Complex<T> as Pow<f64>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, T> Pow<i128> for &'a Complex<T>
where T: Clone + Num + Neg<Output = T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: i128) -> <&'a Complex<T> as Pow<i128>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, T> Pow<i16> for &'a Complex<T>
where T: Clone + Num + Neg<Output = T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: i16) -> <&'a Complex<T> as Pow<i16>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, T> Pow<i32> for &'a Complex<T>
where T: Clone + Num + Neg<Output = T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: i32) -> <&'a Complex<T> as Pow<i32>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, T> Pow<i64> for &'a Complex<T>
where T: Clone + Num + Neg<Output = T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: i64) -> <&'a Complex<T> as Pow<i64>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, T> Pow<i8> for &'a Complex<T>
where T: Clone + Num + Neg<Output = T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: i8) -> <&'a Complex<T> as Pow<i8>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, T> Pow<isize> for &'a Complex<T>
where T: Clone + Num + Neg<Output = T>,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: isize) -> <&'a Complex<T> as Pow<isize>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, T> Pow<u128> for &'a Complex<T>
where T: Clone + Num,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: u128) -> <&'a Complex<T> as Pow<u128>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, T> Pow<u16> for &'a Complex<T>
where T: Clone + Num,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: u16) -> <&'a Complex<T> as Pow<u16>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, T> Pow<u32> for &'a Complex<T>
where T: Clone + Num,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: u32) -> <&'a Complex<T> as Pow<u32>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, T> Pow<u64> for &'a Complex<T>
where T: Clone + Num,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: u64) -> <&'a Complex<T> as Pow<u64>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, T> Pow<u8> for &'a Complex<T>
where T: Clone + Num,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: u8) -> <&'a Complex<T> as Pow<u8>>::Output

Returns self to the power rhs. Read more
source§

impl<'a, T> Pow<usize> for &'a Complex<T>
where T: Clone + Num,

§

type Output = Complex<T>

The result after applying the operator.
source§

fn pow(self, exp: usize) -> <&'a Complex<T> as Pow<usize>>::Output

Returns self to the power rhs. Read more
source§

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

source§

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

Method which takes an iterator and generates Self from the elements by multiplying the items.
source§

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

source§

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

Method which takes an iterator and generates Self from the elements by multiplying the items.
source§

impl<T> RelativeEq for Complex<T>
where T: RelativeEq, <T as AbsDiffEq>::Epsilon: Clone,

source§

fn default_max_relative() -> <T as AbsDiffEq>::Epsilon

The default relative tolerance for testing values that are far-apart. Read more
source§

fn relative_eq( &self, other: &Complex<T>, epsilon: <T as AbsDiffEq>::Epsilon, max_relative: <T as AbsDiffEq>::Epsilon ) -> bool

A test for equality that uses a relative comparison if the values are far apart.
source§

fn relative_ne( &self, other: &Rhs, epsilon: Self::Epsilon, max_relative: Self::Epsilon ) -> bool

The inverse of RelativeEq::relative_eq.
source§

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

§

type Output = Complex<T>

The resulting type after applying the % operator.
source§

fn rem( self, other: &Complex<T> ) -> <&'a Complex<T> as Rem<&'b Complex<T>>>::Output

Performs the % operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the % operator.
source§

fn rem(self, other: &Complex<T>) -> <Complex<T> as Rem<&'a Complex<T>>>::Output

Performs the % operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the % operator.
source§

fn rem(self, other: &T) -> <&'b Complex<T> as Rem<&'a T>>::Output

Performs the % operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the % operator.
source§

fn rem(self, other: &T) -> <Complex<T> as Rem<&'a T>>::Output

Performs the % operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the % operator.
source§

fn rem(self, other: Complex<T>) -> <&'a Complex<T> as Rem<Complex<T>>>::Output

Performs the % operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the % operator.
source§

fn rem(self, other: T) -> <&'a Complex<T> as Rem<T>>::Output

Performs the % operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the % operator.
source§

fn rem(self, other: T) -> <Complex<T> as Rem<T>>::Output

Performs the % operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the % operator.
source§

fn rem(self, modulus: Complex<T>) -> <Complex<T> as Rem>::Output

Performs the % operation. Read more
source§

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

source§

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

Performs the %= operation. Read more
source§

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

source§

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

Performs the %= operation. Read more
source§

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

source§

fn rem_assign(&mut self, other: T)

Performs the %= operation. Read more
source§

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

source§

fn rem_assign(&mut self, modulus: Complex<T>)

Performs the %= operation. Read more
source§

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

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl SimdComplexField for Complex<AutoSimd<[f32; 16]>>

source§

fn simd_exp(self) -> Complex<AutoSimd<[f32; 16]>>

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

source§

fn simd_ln(self) -> Complex<AutoSimd<[f32; 16]>>

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

source§

fn simd_sqrt(self) -> Complex<AutoSimd<[f32; 16]>>

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.

source§

fn simd_powf( self, exp: <Complex<AutoSimd<[f32; 16]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f32; 16]>>

Raises self to a floating point power.

source§

fn simd_log(self, base: AutoSimd<[f32; 16]>) -> Complex<AutoSimd<[f32; 16]>>

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

source§

fn simd_powc( self, exp: Complex<AutoSimd<[f32; 16]>> ) -> Complex<AutoSimd<[f32; 16]>>

Raises self to a complex power.

source§

fn simd_sin(self) -> Complex<AutoSimd<[f32; 16]>>

Computes the sine of self.

source§

fn simd_cos(self) -> Complex<AutoSimd<[f32; 16]>>

Computes the cosine of self.

source§

fn simd_tan(self) -> Complex<AutoSimd<[f32; 16]>>

Computes the tangent of self.

source§

fn simd_asin(self) -> Complex<AutoSimd<[f32; 16]>>

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.

source§

fn simd_acos(self) -> Complex<AutoSimd<[f32; 16]>>

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

source§

fn simd_atan(self) -> Complex<AutoSimd<[f32; 16]>>

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.

source§

fn simd_sinh(self) -> Complex<AutoSimd<[f32; 16]>>

Computes the hyperbolic sine of self.

source§

fn simd_cosh(self) -> Complex<AutoSimd<[f32; 16]>>

Computes the hyperbolic cosine of self.

source§

fn simd_tanh(self) -> Complex<AutoSimd<[f32; 16]>>

Computes the hyperbolic tangent of self.

source§

fn simd_asinh(self) -> Complex<AutoSimd<[f32; 16]>>

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.

source§

fn simd_acosh(self) -> Complex<AutoSimd<[f32; 16]>>

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

source§

fn simd_atanh(self) -> Complex<AutoSimd<[f32; 16]>>

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.

§

type SimdRealField = AutoSimd<[f32; 16]>

Type of the coefficients of a complex number.
source§

fn simd_horizontal_sum( self ) -> <Complex<AutoSimd<[f32; 16]>> as SimdValue>::Element

Computes the sum of all the lanes of self.
source§

fn simd_horizontal_product( self ) -> <Complex<AutoSimd<[f32; 16]>> as SimdValue>::Element

Computes the product of all the lanes of self.
source§

fn from_simd_real( re: <Complex<AutoSimd<[f32; 16]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f32; 16]>>

Builds a pure-real complex number from the given value.
source§

fn simd_real( self ) -> <Complex<AutoSimd<[f32; 16]>> as SimdComplexField>::SimdRealField

The real part of this complex number.
source§

fn simd_imaginary( self ) -> <Complex<AutoSimd<[f32; 16]>> as SimdComplexField>::SimdRealField

The imaginary part of this complex number.
source§

fn simd_argument( self ) -> <Complex<AutoSimd<[f32; 16]>> as SimdComplexField>::SimdRealField

The argument of this complex number.
source§

fn simd_modulus( self ) -> <Complex<AutoSimd<[f32; 16]>> as SimdComplexField>::SimdRealField

The modulus of this complex number.
source§

fn simd_modulus_squared( self ) -> <Complex<AutoSimd<[f32; 16]>> as SimdComplexField>::SimdRealField

The squared modulus of this complex number.
source§

fn simd_norm1( self ) -> <Complex<AutoSimd<[f32; 16]>> as SimdComplexField>::SimdRealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn simd_recip(self) -> Complex<AutoSimd<[f32; 16]>>

source§

fn simd_conjugate(self) -> Complex<AutoSimd<[f32; 16]>>

source§

fn simd_scale( self, factor: <Complex<AutoSimd<[f32; 16]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f32; 16]>>

Multiplies this complex number by factor.
source§

fn simd_unscale( self, factor: <Complex<AutoSimd<[f32; 16]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f32; 16]>>

Divides this complex number by factor.
source§

fn simd_floor(self) -> Complex<AutoSimd<[f32; 16]>>

source§

fn simd_ceil(self) -> Complex<AutoSimd<[f32; 16]>>

source§

fn simd_round(self) -> Complex<AutoSimd<[f32; 16]>>

source§

fn simd_trunc(self) -> Complex<AutoSimd<[f32; 16]>>

source§

fn simd_fract(self) -> Complex<AutoSimd<[f32; 16]>>

source§

fn simd_mul_add( self, a: Complex<AutoSimd<[f32; 16]>>, b: Complex<AutoSimd<[f32; 16]>> ) -> Complex<AutoSimd<[f32; 16]>>

source§

fn simd_abs( self ) -> <Complex<AutoSimd<[f32; 16]>> as SimdComplexField>::SimdRealField

The absolute value of this complex number: self / self.signum(). Read more
source§

fn simd_exp2(self) -> Complex<AutoSimd<[f32; 16]>>

source§

fn simd_exp_m1(self) -> Complex<AutoSimd<[f32; 16]>>

source§

fn simd_ln_1p(self) -> Complex<AutoSimd<[f32; 16]>>

source§

fn simd_log2(self) -> Complex<AutoSimd<[f32; 16]>>

source§

fn simd_log10(self) -> Complex<AutoSimd<[f32; 16]>>

source§

fn simd_cbrt(self) -> Complex<AutoSimd<[f32; 16]>>

source§

fn simd_powi(self, n: i32) -> Complex<AutoSimd<[f32; 16]>>

source§

fn simd_hypot( self, b: Complex<AutoSimd<[f32; 16]>> ) -> <Complex<AutoSimd<[f32; 16]>> as SimdComplexField>::SimdRealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn simd_sin_cos( self ) -> (Complex<AutoSimd<[f32; 16]>>, Complex<AutoSimd<[f32; 16]>>)

source§

fn simd_sinh_cosh( self ) -> (Complex<AutoSimd<[f32; 16]>>, Complex<AutoSimd<[f32; 16]>>)

source§

fn simd_to_polar(self) -> (Self::SimdRealField, Self::SimdRealField)

The polar form of this complex number: (modulus, arg)
source§

fn simd_to_exp(self) -> (Self::SimdRealField, Self)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn simd_signum(self) -> Self

The exponential part of this complex number: self / self.modulus()
source§

fn simd_sinc(self) -> Self

Cardinal sine
source§

fn simd_sinhc(self) -> Self

source§

fn simd_cosc(self) -> Self

Cardinal cos
source§

fn simd_coshc(self) -> Self

source§

impl SimdComplexField for Complex<AutoSimd<[f32; 2]>>

source§

fn simd_exp(self) -> Complex<AutoSimd<[f32; 2]>>

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

source§

fn simd_ln(self) -> Complex<AutoSimd<[f32; 2]>>

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

source§

fn simd_sqrt(self) -> Complex<AutoSimd<[f32; 2]>>

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.

source§

fn simd_powf( self, exp: <Complex<AutoSimd<[f32; 2]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f32; 2]>>

Raises self to a floating point power.

source§

fn simd_log(self, base: AutoSimd<[f32; 2]>) -> Complex<AutoSimd<[f32; 2]>>

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

source§

fn simd_powc( self, exp: Complex<AutoSimd<[f32; 2]>> ) -> Complex<AutoSimd<[f32; 2]>>

Raises self to a complex power.

source§

fn simd_sin(self) -> Complex<AutoSimd<[f32; 2]>>

Computes the sine of self.

source§

fn simd_cos(self) -> Complex<AutoSimd<[f32; 2]>>

Computes the cosine of self.

source§

fn simd_tan(self) -> Complex<AutoSimd<[f32; 2]>>

Computes the tangent of self.

source§

fn simd_asin(self) -> Complex<AutoSimd<[f32; 2]>>

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.

source§

fn simd_acos(self) -> Complex<AutoSimd<[f32; 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)) ≤ π.

source§

fn simd_atan(self) -> Complex<AutoSimd<[f32; 2]>>

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.

source§

fn simd_sinh(self) -> Complex<AutoSimd<[f32; 2]>>

Computes the hyperbolic sine of self.

source§

fn simd_cosh(self) -> Complex<AutoSimd<[f32; 2]>>

Computes the hyperbolic cosine of self.

source§

fn simd_tanh(self) -> Complex<AutoSimd<[f32; 2]>>

Computes the hyperbolic tangent of self.

source§

fn simd_asinh(self) -> Complex<AutoSimd<[f32; 2]>>

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.

source§

fn simd_acosh(self) -> Complex<AutoSimd<[f32; 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)) < ∞.

source§

fn simd_atanh(self) -> Complex<AutoSimd<[f32; 2]>>

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.

§

type SimdRealField = AutoSimd<[f32; 2]>

Type of the coefficients of a complex number.
source§

fn simd_horizontal_sum( self ) -> <Complex<AutoSimd<[f32; 2]>> as SimdValue>::Element

Computes the sum of all the lanes of self.
source§

fn simd_horizontal_product( self ) -> <Complex<AutoSimd<[f32; 2]>> as SimdValue>::Element

Computes the product of all the lanes of self.
source§

fn from_simd_real( re: <Complex<AutoSimd<[f32; 2]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f32; 2]>>

Builds a pure-real complex number from the given value.
source§

fn simd_real( self ) -> <Complex<AutoSimd<[f32; 2]>> as SimdComplexField>::SimdRealField

The real part of this complex number.
source§

fn simd_imaginary( self ) -> <Complex<AutoSimd<[f32; 2]>> as SimdComplexField>::SimdRealField

The imaginary part of this complex number.
source§

fn simd_argument( self ) -> <Complex<AutoSimd<[f32; 2]>> as SimdComplexField>::SimdRealField

The argument of this complex number.
source§

fn simd_modulus( self ) -> <Complex<AutoSimd<[f32; 2]>> as SimdComplexField>::SimdRealField

The modulus of this complex number.
source§

fn simd_modulus_squared( self ) -> <Complex<AutoSimd<[f32; 2]>> as SimdComplexField>::SimdRealField

The squared modulus of this complex number.
source§

fn simd_norm1( self ) -> <Complex<AutoSimd<[f32; 2]>> as SimdComplexField>::SimdRealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn simd_recip(self) -> Complex<AutoSimd<[f32; 2]>>

source§

fn simd_conjugate(self) -> Complex<AutoSimd<[f32; 2]>>

source§

fn simd_scale( self, factor: <Complex<AutoSimd<[f32; 2]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f32; 2]>>

Multiplies this complex number by factor.
source§

fn simd_unscale( self, factor: <Complex<AutoSimd<[f32; 2]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f32; 2]>>

Divides this complex number by factor.
source§

fn simd_floor(self) -> Complex<AutoSimd<[f32; 2]>>

source§

fn simd_ceil(self) -> Complex<AutoSimd<[f32; 2]>>

source§

fn simd_round(self) -> Complex<AutoSimd<[f32; 2]>>

source§

fn simd_trunc(self) -> Complex<AutoSimd<[f32; 2]>>

source§

fn simd_fract(self) -> Complex<AutoSimd<[f32; 2]>>

source§

fn simd_mul_add( self, a: Complex<AutoSimd<[f32; 2]>>, b: Complex<AutoSimd<[f32; 2]>> ) -> Complex<AutoSimd<[f32; 2]>>

source§

fn simd_abs( self ) -> <Complex<AutoSimd<[f32; 2]>> as SimdComplexField>::SimdRealField

The absolute value of this complex number: self / self.signum(). Read more
source§

fn simd_exp2(self) -> Complex<AutoSimd<[f32; 2]>>

source§

fn simd_exp_m1(self) -> Complex<AutoSimd<[f32; 2]>>

source§

fn simd_ln_1p(self) -> Complex<AutoSimd<[f32; 2]>>

source§

fn simd_log2(self) -> Complex<AutoSimd<[f32; 2]>>

source§

fn simd_log10(self) -> Complex<AutoSimd<[f32; 2]>>

source§

fn simd_cbrt(self) -> Complex<AutoSimd<[f32; 2]>>

source§

fn simd_powi(self, n: i32) -> Complex<AutoSimd<[f32; 2]>>

source§

fn simd_hypot( self, b: Complex<AutoSimd<[f32; 2]>> ) -> <Complex<AutoSimd<[f32; 2]>> as SimdComplexField>::SimdRealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn simd_sin_cos( self ) -> (Complex<AutoSimd<[f32; 2]>>, Complex<AutoSimd<[f32; 2]>>)

source§

fn simd_sinh_cosh( self ) -> (Complex<AutoSimd<[f32; 2]>>, Complex<AutoSimd<[f32; 2]>>)

source§

fn simd_to_polar(self) -> (Self::SimdRealField, Self::SimdRealField)

The polar form of this complex number: (modulus, arg)
source§

fn simd_to_exp(self) -> (Self::SimdRealField, Self)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn simd_signum(self) -> Self

The exponential part of this complex number: self / self.modulus()
source§

fn simd_sinc(self) -> Self

Cardinal sine
source§

fn simd_sinhc(self) -> Self

source§

fn simd_cosc(self) -> Self

Cardinal cos
source§

fn simd_coshc(self) -> Self

source§

impl SimdComplexField for Complex<AutoSimd<[f32; 4]>>

source§

fn simd_exp(self) -> Complex<AutoSimd<[f32; 4]>>

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

source§

fn simd_ln(self) -> Complex<AutoSimd<[f32; 4]>>

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

source§

fn simd_sqrt(self) -> Complex<AutoSimd<[f32; 4]>>

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.

source§

fn simd_powf( self, exp: <Complex<AutoSimd<[f32; 4]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f32; 4]>>

Raises self to a floating point power.

source§

fn simd_log(self, base: AutoSimd<[f32; 4]>) -> Complex<AutoSimd<[f32; 4]>>

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

source§

fn simd_powc( self, exp: Complex<AutoSimd<[f32; 4]>> ) -> Complex<AutoSimd<[f32; 4]>>

Raises self to a complex power.

source§

fn simd_sin(self) -> Complex<AutoSimd<[f32; 4]>>

Computes the sine of self.

source§

fn simd_cos(self) -> Complex<AutoSimd<[f32; 4]>>

Computes the cosine of self.

source§

fn simd_tan(self) -> Complex<AutoSimd<[f32; 4]>>

Computes the tangent of self.

source§

fn simd_asin(self) -> Complex<AutoSimd<[f32; 4]>>

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.

source§

fn simd_acos(self) -> Complex<AutoSimd<[f32; 4]>>

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

source§

fn simd_atan(self) -> Complex<AutoSimd<[f32; 4]>>

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.

source§

fn simd_sinh(self) -> Complex<AutoSimd<[f32; 4]>>

Computes the hyperbolic sine of self.

source§

fn simd_cosh(self) -> Complex<AutoSimd<[f32; 4]>>

Computes the hyperbolic cosine of self.

source§

fn simd_tanh(self) -> Complex<AutoSimd<[f32; 4]>>

Computes the hyperbolic tangent of self.

source§

fn simd_asinh(self) -> Complex<AutoSimd<[f32; 4]>>

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.

source§

fn simd_acosh(self) -> Complex<AutoSimd<[f32; 4]>>

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

source§

fn simd_atanh(self) -> Complex<AutoSimd<[f32; 4]>>

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.

§

type SimdRealField = AutoSimd<[f32; 4]>

Type of the coefficients of a complex number.
source§

fn simd_horizontal_sum( self ) -> <Complex<AutoSimd<[f32; 4]>> as SimdValue>::Element

Computes the sum of all the lanes of self.
source§

fn simd_horizontal_product( self ) -> <Complex<AutoSimd<[f32; 4]>> as SimdValue>::Element

Computes the product of all the lanes of self.
source§

fn from_simd_real( re: <Complex<AutoSimd<[f32; 4]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f32; 4]>>

Builds a pure-real complex number from the given value.
source§

fn simd_real( self ) -> <Complex<AutoSimd<[f32; 4]>> as SimdComplexField>::SimdRealField

The real part of this complex number.
source§

fn simd_imaginary( self ) -> <Complex<AutoSimd<[f32; 4]>> as SimdComplexField>::SimdRealField

The imaginary part of this complex number.
source§

fn simd_argument( self ) -> <Complex<AutoSimd<[f32; 4]>> as SimdComplexField>::SimdRealField

The argument of this complex number.
source§

fn simd_modulus( self ) -> <Complex<AutoSimd<[f32; 4]>> as SimdComplexField>::SimdRealField

The modulus of this complex number.
source§

fn simd_modulus_squared( self ) -> <Complex<AutoSimd<[f32; 4]>> as SimdComplexField>::SimdRealField

The squared modulus of this complex number.
source§

fn simd_norm1( self ) -> <Complex<AutoSimd<[f32; 4]>> as SimdComplexField>::SimdRealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn simd_recip(self) -> Complex<AutoSimd<[f32; 4]>>

source§

fn simd_conjugate(self) -> Complex<AutoSimd<[f32; 4]>>

source§

fn simd_scale( self, factor: <Complex<AutoSimd<[f32; 4]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f32; 4]>>

Multiplies this complex number by factor.
source§

fn simd_unscale( self, factor: <Complex<AutoSimd<[f32; 4]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f32; 4]>>

Divides this complex number by factor.
source§

fn simd_floor(self) -> Complex<AutoSimd<[f32; 4]>>

source§

fn simd_ceil(self) -> Complex<AutoSimd<[f32; 4]>>

source§

fn simd_round(self) -> Complex<AutoSimd<[f32; 4]>>

source§

fn simd_trunc(self) -> Complex<AutoSimd<[f32; 4]>>

source§

fn simd_fract(self) -> Complex<AutoSimd<[f32; 4]>>

source§

fn simd_mul_add( self, a: Complex<AutoSimd<[f32; 4]>>, b: Complex<AutoSimd<[f32; 4]>> ) -> Complex<AutoSimd<[f32; 4]>>

source§

fn simd_abs( self ) -> <Complex<AutoSimd<[f32; 4]>> as SimdComplexField>::SimdRealField

The absolute value of this complex number: self / self.signum(). Read more
source§

fn simd_exp2(self) -> Complex<AutoSimd<[f32; 4]>>

source§

fn simd_exp_m1(self) -> Complex<AutoSimd<[f32; 4]>>

source§

fn simd_ln_1p(self) -> Complex<AutoSimd<[f32; 4]>>

source§

fn simd_log2(self) -> Complex<AutoSimd<[f32; 4]>>

source§

fn simd_log10(self) -> Complex<AutoSimd<[f32; 4]>>

source§

fn simd_cbrt(self) -> Complex<AutoSimd<[f32; 4]>>

source§

fn simd_powi(self, n: i32) -> Complex<AutoSimd<[f32; 4]>>

source§

fn simd_hypot( self, b: Complex<AutoSimd<[f32; 4]>> ) -> <Complex<AutoSimd<[f32; 4]>> as SimdComplexField>::SimdRealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn simd_sin_cos( self ) -> (Complex<AutoSimd<[f32; 4]>>, Complex<AutoSimd<[f32; 4]>>)

source§

fn simd_sinh_cosh( self ) -> (Complex<AutoSimd<[f32; 4]>>, Complex<AutoSimd<[f32; 4]>>)

source§

fn simd_to_polar(self) -> (Self::SimdRealField, Self::SimdRealField)

The polar form of this complex number: (modulus, arg)
source§

fn simd_to_exp(self) -> (Self::SimdRealField, Self)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn simd_signum(self) -> Self

The exponential part of this complex number: self / self.modulus()
source§

fn simd_sinc(self) -> Self

Cardinal sine
source§

fn simd_sinhc(self) -> Self

source§

fn simd_cosc(self) -> Self

Cardinal cos
source§

fn simd_coshc(self) -> Self

source§

impl SimdComplexField for Complex<AutoSimd<[f32; 8]>>

source§

fn simd_exp(self) -> Complex<AutoSimd<[f32; 8]>>

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

source§

fn simd_ln(self) -> Complex<AutoSimd<[f32; 8]>>

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

source§

fn simd_sqrt(self) -> Complex<AutoSimd<[f32; 8]>>

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.

source§

fn simd_powf( self, exp: <Complex<AutoSimd<[f32; 8]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f32; 8]>>

Raises self to a floating point power.

source§

fn simd_log(self, base: AutoSimd<[f32; 8]>) -> Complex<AutoSimd<[f32; 8]>>

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

source§

fn simd_powc( self, exp: Complex<AutoSimd<[f32; 8]>> ) -> Complex<AutoSimd<[f32; 8]>>

Raises self to a complex power.

source§

fn simd_sin(self) -> Complex<AutoSimd<[f32; 8]>>

Computes the sine of self.

source§

fn simd_cos(self) -> Complex<AutoSimd<[f32; 8]>>

Computes the cosine of self.

source§

fn simd_tan(self) -> Complex<AutoSimd<[f32; 8]>>

Computes the tangent of self.

source§

fn simd_asin(self) -> Complex<AutoSimd<[f32; 8]>>

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.

source§

fn simd_acos(self) -> Complex<AutoSimd<[f32; 8]>>

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

source§

fn simd_atan(self) -> Complex<AutoSimd<[f32; 8]>>

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.

source§

fn simd_sinh(self) -> Complex<AutoSimd<[f32; 8]>>

Computes the hyperbolic sine of self.

source§

fn simd_cosh(self) -> Complex<AutoSimd<[f32; 8]>>

Computes the hyperbolic cosine of self.

source§

fn simd_tanh(self) -> Complex<AutoSimd<[f32; 8]>>

Computes the hyperbolic tangent of self.

source§

fn simd_asinh(self) -> Complex<AutoSimd<[f32; 8]>>

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.

source§

fn simd_acosh(self) -> Complex<AutoSimd<[f32; 8]>>

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

source§

fn simd_atanh(self) -> Complex<AutoSimd<[f32; 8]>>

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.

§

type SimdRealField = AutoSimd<[f32; 8]>

Type of the coefficients of a complex number.
source§

fn simd_horizontal_sum( self ) -> <Complex<AutoSimd<[f32; 8]>> as SimdValue>::Element

Computes the sum of all the lanes of self.
source§

fn simd_horizontal_product( self ) -> <Complex<AutoSimd<[f32; 8]>> as SimdValue>::Element

Computes the product of all the lanes of self.
source§

fn from_simd_real( re: <Complex<AutoSimd<[f32; 8]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f32; 8]>>

Builds a pure-real complex number from the given value.
source§

fn simd_real( self ) -> <Complex<AutoSimd<[f32; 8]>> as SimdComplexField>::SimdRealField

The real part of this complex number.
source§

fn simd_imaginary( self ) -> <Complex<AutoSimd<[f32; 8]>> as SimdComplexField>::SimdRealField

The imaginary part of this complex number.
source§

fn simd_argument( self ) -> <Complex<AutoSimd<[f32; 8]>> as SimdComplexField>::SimdRealField

The argument of this complex number.
source§

fn simd_modulus( self ) -> <Complex<AutoSimd<[f32; 8]>> as SimdComplexField>::SimdRealField

The modulus of this complex number.
source§

fn simd_modulus_squared( self ) -> <Complex<AutoSimd<[f32; 8]>> as SimdComplexField>::SimdRealField

The squared modulus of this complex number.
source§

fn simd_norm1( self ) -> <Complex<AutoSimd<[f32; 8]>> as SimdComplexField>::SimdRealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn simd_recip(self) -> Complex<AutoSimd<[f32; 8]>>

source§

fn simd_conjugate(self) -> Complex<AutoSimd<[f32; 8]>>

source§

fn simd_scale( self, factor: <Complex<AutoSimd<[f32; 8]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f32; 8]>>

Multiplies this complex number by factor.
source§

fn simd_unscale( self, factor: <Complex<AutoSimd<[f32; 8]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f32; 8]>>

Divides this complex number by factor.
source§

fn simd_floor(self) -> Complex<AutoSimd<[f32; 8]>>

source§

fn simd_ceil(self) -> Complex<AutoSimd<[f32; 8]>>

source§

fn simd_round(self) -> Complex<AutoSimd<[f32; 8]>>

source§

fn simd_trunc(self) -> Complex<AutoSimd<[f32; 8]>>

source§

fn simd_fract(self) -> Complex<AutoSimd<[f32; 8]>>

source§

fn simd_mul_add( self, a: Complex<AutoSimd<[f32; 8]>>, b: Complex<AutoSimd<[f32; 8]>> ) -> Complex<AutoSimd<[f32; 8]>>

source§

fn simd_abs( self ) -> <Complex<AutoSimd<[f32; 8]>> as SimdComplexField>::SimdRealField

The absolute value of this complex number: self / self.signum(). Read more
source§

fn simd_exp2(self) -> Complex<AutoSimd<[f32; 8]>>

source§

fn simd_exp_m1(self) -> Complex<AutoSimd<[f32; 8]>>

source§

fn simd_ln_1p(self) -> Complex<AutoSimd<[f32; 8]>>

source§

fn simd_log2(self) -> Complex<AutoSimd<[f32; 8]>>

source§

fn simd_log10(self) -> Complex<AutoSimd<[f32; 8]>>

source§

fn simd_cbrt(self) -> Complex<AutoSimd<[f32; 8]>>

source§

fn simd_powi(self, n: i32) -> Complex<AutoSimd<[f32; 8]>>

source§

fn simd_hypot( self, b: Complex<AutoSimd<[f32; 8]>> ) -> <Complex<AutoSimd<[f32; 8]>> as SimdComplexField>::SimdRealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn simd_sin_cos( self ) -> (Complex<AutoSimd<[f32; 8]>>, Complex<AutoSimd<[f32; 8]>>)

source§

fn simd_sinh_cosh( self ) -> (Complex<AutoSimd<[f32; 8]>>, Complex<AutoSimd<[f32; 8]>>)

source§

fn simd_to_polar(self) -> (Self::SimdRealField, Self::SimdRealField)

The polar form of this complex number: (modulus, arg)
source§

fn simd_to_exp(self) -> (Self::SimdRealField, Self)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn simd_signum(self) -> Self

The exponential part of this complex number: self / self.modulus()
source§

fn simd_sinc(self) -> Self

Cardinal sine
source§

fn simd_sinhc(self) -> Self

source§

fn simd_cosc(self) -> Self

Cardinal cos
source§

fn simd_coshc(self) -> Self

source§

impl SimdComplexField for Complex<AutoSimd<[f64; 2]>>

source§

fn simd_exp(self) -> Complex<AutoSimd<[f64; 2]>>

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

source§

fn simd_ln(self) -> Complex<AutoSimd<[f64; 2]>>

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

source§

fn simd_sqrt(self) -> Complex<AutoSimd<[f64; 2]>>

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.

source§

fn simd_powf( self, exp: <Complex<AutoSimd<[f64; 2]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f64; 2]>>

Raises self to a floating point power.

source§

fn simd_log(self, base: AutoSimd<[f64; 2]>) -> Complex<AutoSimd<[f64; 2]>>

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

source§

fn simd_powc( self, exp: Complex<AutoSimd<[f64; 2]>> ) -> Complex<AutoSimd<[f64; 2]>>

Raises self to a complex power.

source§

fn simd_sin(self) -> Complex<AutoSimd<[f64; 2]>>

Computes the sine of self.

source§

fn simd_cos(self) -> Complex<AutoSimd<[f64; 2]>>

Computes the cosine of self.

source§

fn simd_tan(self) -> Complex<AutoSimd<[f64; 2]>>

Computes the tangent of self.

source§

fn simd_asin(self) -> Complex<AutoSimd<[f64; 2]>>

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.

source§

fn simd_acos(self) -> Complex<AutoSimd<[f64; 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)) ≤ π.

source§

fn simd_atan(self) -> Complex<AutoSimd<[f64; 2]>>

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.

source§

fn simd_sinh(self) -> Complex<AutoSimd<[f64; 2]>>

Computes the hyperbolic sine of self.

source§

fn simd_cosh(self) -> Complex<AutoSimd<[f64; 2]>>

Computes the hyperbolic cosine of self.

source§

fn simd_tanh(self) -> Complex<AutoSimd<[f64; 2]>>

Computes the hyperbolic tangent of self.

source§

fn simd_asinh(self) -> Complex<AutoSimd<[f64; 2]>>

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.

source§

fn simd_acosh(self) -> Complex<AutoSimd<[f64; 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)) < ∞.

source§

fn simd_atanh(self) -> Complex<AutoSimd<[f64; 2]>>

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.

§

type SimdRealField = AutoSimd<[f64; 2]>

Type of the coefficients of a complex number.
source§

fn simd_horizontal_sum( self ) -> <Complex<AutoSimd<[f64; 2]>> as SimdValue>::Element

Computes the sum of all the lanes of self.
source§

fn simd_horizontal_product( self ) -> <Complex<AutoSimd<[f64; 2]>> as SimdValue>::Element

Computes the product of all the lanes of self.
source§

fn from_simd_real( re: <Complex<AutoSimd<[f64; 2]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f64; 2]>>

Builds a pure-real complex number from the given value.
source§

fn simd_real( self ) -> <Complex<AutoSimd<[f64; 2]>> as SimdComplexField>::SimdRealField

The real part of this complex number.
source§

fn simd_imaginary( self ) -> <Complex<AutoSimd<[f64; 2]>> as SimdComplexField>::SimdRealField

The imaginary part of this complex number.
source§

fn simd_argument( self ) -> <Complex<AutoSimd<[f64; 2]>> as SimdComplexField>::SimdRealField

The argument of this complex number.
source§

fn simd_modulus( self ) -> <Complex<AutoSimd<[f64; 2]>> as SimdComplexField>::SimdRealField

The modulus of this complex number.
source§

fn simd_modulus_squared( self ) -> <Complex<AutoSimd<[f64; 2]>> as SimdComplexField>::SimdRealField

The squared modulus of this complex number.
source§

fn simd_norm1( self ) -> <Complex<AutoSimd<[f64; 2]>> as SimdComplexField>::SimdRealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn simd_recip(self) -> Complex<AutoSimd<[f64; 2]>>

source§

fn simd_conjugate(self) -> Complex<AutoSimd<[f64; 2]>>

source§

fn simd_scale( self, factor: <Complex<AutoSimd<[f64; 2]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f64; 2]>>

Multiplies this complex number by factor.
source§

fn simd_unscale( self, factor: <Complex<AutoSimd<[f64; 2]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f64; 2]>>

Divides this complex number by factor.
source§

fn simd_floor(self) -> Complex<AutoSimd<[f64; 2]>>

source§

fn simd_ceil(self) -> Complex<AutoSimd<[f64; 2]>>

source§

fn simd_round(self) -> Complex<AutoSimd<[f64; 2]>>

source§

fn simd_trunc(self) -> Complex<AutoSimd<[f64; 2]>>

source§

fn simd_fract(self) -> Complex<AutoSimd<[f64; 2]>>

source§

fn simd_mul_add( self, a: Complex<AutoSimd<[f64; 2]>>, b: Complex<AutoSimd<[f64; 2]>> ) -> Complex<AutoSimd<[f64; 2]>>

source§

fn simd_abs( self ) -> <Complex<AutoSimd<[f64; 2]>> as SimdComplexField>::SimdRealField

The absolute value of this complex number: self / self.signum(). Read more
source§

fn simd_exp2(self) -> Complex<AutoSimd<[f64; 2]>>

source§

fn simd_exp_m1(self) -> Complex<AutoSimd<[f64; 2]>>

source§

fn simd_ln_1p(self) -> Complex<AutoSimd<[f64; 2]>>

source§

fn simd_log2(self) -> Complex<AutoSimd<[f64; 2]>>

source§

fn simd_log10(self) -> Complex<AutoSimd<[f64; 2]>>

source§

fn simd_cbrt(self) -> Complex<AutoSimd<[f64; 2]>>

source§

fn simd_powi(self, n: i32) -> Complex<AutoSimd<[f64; 2]>>

source§

fn simd_hypot( self, b: Complex<AutoSimd<[f64; 2]>> ) -> <Complex<AutoSimd<[f64; 2]>> as SimdComplexField>::SimdRealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn simd_sin_cos( self ) -> (Complex<AutoSimd<[f64; 2]>>, Complex<AutoSimd<[f64; 2]>>)

source§

fn simd_sinh_cosh( self ) -> (Complex<AutoSimd<[f64; 2]>>, Complex<AutoSimd<[f64; 2]>>)

source§

fn simd_to_polar(self) -> (Self::SimdRealField, Self::SimdRealField)

The polar form of this complex number: (modulus, arg)
source§

fn simd_to_exp(self) -> (Self::SimdRealField, Self)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn simd_signum(self) -> Self

The exponential part of this complex number: self / self.modulus()
source§

fn simd_sinc(self) -> Self

Cardinal sine
source§

fn simd_sinhc(self) -> Self

source§

fn simd_cosc(self) -> Self

Cardinal cos
source§

fn simd_coshc(self) -> Self

source§

impl SimdComplexField for Complex<AutoSimd<[f64; 4]>>

source§

fn simd_exp(self) -> Complex<AutoSimd<[f64; 4]>>

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

source§

fn simd_ln(self) -> Complex<AutoSimd<[f64; 4]>>

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

source§

fn simd_sqrt(self) -> Complex<AutoSimd<[f64; 4]>>

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.

source§

fn simd_powf( self, exp: <Complex<AutoSimd<[f64; 4]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f64; 4]>>

Raises self to a floating point power.

source§

fn simd_log(self, base: AutoSimd<[f64; 4]>) -> Complex<AutoSimd<[f64; 4]>>

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

source§

fn simd_powc( self, exp: Complex<AutoSimd<[f64; 4]>> ) -> Complex<AutoSimd<[f64; 4]>>

Raises self to a complex power.

source§

fn simd_sin(self) -> Complex<AutoSimd<[f64; 4]>>

Computes the sine of self.

source§

fn simd_cos(self) -> Complex<AutoSimd<[f64; 4]>>

Computes the cosine of self.

source§

fn simd_tan(self) -> Complex<AutoSimd<[f64; 4]>>

Computes the tangent of self.

source§

fn simd_asin(self) -> Complex<AutoSimd<[f64; 4]>>

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.

source§

fn simd_acos(self) -> Complex<AutoSimd<[f64; 4]>>

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

source§

fn simd_atan(self) -> Complex<AutoSimd<[f64; 4]>>

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.

source§

fn simd_sinh(self) -> Complex<AutoSimd<[f64; 4]>>

Computes the hyperbolic sine of self.

source§

fn simd_cosh(self) -> Complex<AutoSimd<[f64; 4]>>

Computes the hyperbolic cosine of self.

source§

fn simd_tanh(self) -> Complex<AutoSimd<[f64; 4]>>

Computes the hyperbolic tangent of self.

source§

fn simd_asinh(self) -> Complex<AutoSimd<[f64; 4]>>

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.

source§

fn simd_acosh(self) -> Complex<AutoSimd<[f64; 4]>>

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

source§

fn simd_atanh(self) -> Complex<AutoSimd<[f64; 4]>>

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.

§

type SimdRealField = AutoSimd<[f64; 4]>

Type of the coefficients of a complex number.
source§

fn simd_horizontal_sum( self ) -> <Complex<AutoSimd<[f64; 4]>> as SimdValue>::Element

Computes the sum of all the lanes of self.
source§

fn simd_horizontal_product( self ) -> <Complex<AutoSimd<[f64; 4]>> as SimdValue>::Element

Computes the product of all the lanes of self.
source§

fn from_simd_real( re: <Complex<AutoSimd<[f64; 4]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f64; 4]>>

Builds a pure-real complex number from the given value.
source§

fn simd_real( self ) -> <Complex<AutoSimd<[f64; 4]>> as SimdComplexField>::SimdRealField

The real part of this complex number.
source§

fn simd_imaginary( self ) -> <Complex<AutoSimd<[f64; 4]>> as SimdComplexField>::SimdRealField

The imaginary part of this complex number.
source§

fn simd_argument( self ) -> <Complex<AutoSimd<[f64; 4]>> as SimdComplexField>::SimdRealField

The argument of this complex number.
source§

fn simd_modulus( self ) -> <Complex<AutoSimd<[f64; 4]>> as SimdComplexField>::SimdRealField

The modulus of this complex number.
source§

fn simd_modulus_squared( self ) -> <Complex<AutoSimd<[f64; 4]>> as SimdComplexField>::SimdRealField

The squared modulus of this complex number.
source§

fn simd_norm1( self ) -> <Complex<AutoSimd<[f64; 4]>> as SimdComplexField>::SimdRealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn simd_recip(self) -> Complex<AutoSimd<[f64; 4]>>

source§

fn simd_conjugate(self) -> Complex<AutoSimd<[f64; 4]>>

source§

fn simd_scale( self, factor: <Complex<AutoSimd<[f64; 4]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f64; 4]>>

Multiplies this complex number by factor.
source§

fn simd_unscale( self, factor: <Complex<AutoSimd<[f64; 4]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f64; 4]>>

Divides this complex number by factor.
source§

fn simd_floor(self) -> Complex<AutoSimd<[f64; 4]>>

source§

fn simd_ceil(self) -> Complex<AutoSimd<[f64; 4]>>

source§

fn simd_round(self) -> Complex<AutoSimd<[f64; 4]>>

source§

fn simd_trunc(self) -> Complex<AutoSimd<[f64; 4]>>

source§

fn simd_fract(self) -> Complex<AutoSimd<[f64; 4]>>

source§

fn simd_mul_add( self, a: Complex<AutoSimd<[f64; 4]>>, b: Complex<AutoSimd<[f64; 4]>> ) -> Complex<AutoSimd<[f64; 4]>>

source§

fn simd_abs( self ) -> <Complex<AutoSimd<[f64; 4]>> as SimdComplexField>::SimdRealField

The absolute value of this complex number: self / self.signum(). Read more
source§

fn simd_exp2(self) -> Complex<AutoSimd<[f64; 4]>>

source§

fn simd_exp_m1(self) -> Complex<AutoSimd<[f64; 4]>>

source§

fn simd_ln_1p(self) -> Complex<AutoSimd<[f64; 4]>>

source§

fn simd_log2(self) -> Complex<AutoSimd<[f64; 4]>>

source§

fn simd_log10(self) -> Complex<AutoSimd<[f64; 4]>>

source§

fn simd_cbrt(self) -> Complex<AutoSimd<[f64; 4]>>

source§

fn simd_powi(self, n: i32) -> Complex<AutoSimd<[f64; 4]>>

source§

fn simd_hypot( self, b: Complex<AutoSimd<[f64; 4]>> ) -> <Complex<AutoSimd<[f64; 4]>> as SimdComplexField>::SimdRealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn simd_sin_cos( self ) -> (Complex<AutoSimd<[f64; 4]>>, Complex<AutoSimd<[f64; 4]>>)

source§

fn simd_sinh_cosh( self ) -> (Complex<AutoSimd<[f64; 4]>>, Complex<AutoSimd<[f64; 4]>>)

source§

fn simd_to_polar(self) -> (Self::SimdRealField, Self::SimdRealField)

The polar form of this complex number: (modulus, arg)
source§

fn simd_to_exp(self) -> (Self::SimdRealField, Self)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn simd_signum(self) -> Self

The exponential part of this complex number: self / self.modulus()
source§

fn simd_sinc(self) -> Self

Cardinal sine
source§

fn simd_sinhc(self) -> Self

source§

fn simd_cosc(self) -> Self

Cardinal cos
source§

fn simd_coshc(self) -> Self

source§

impl SimdComplexField for Complex<AutoSimd<[f64; 8]>>

source§

fn simd_exp(self) -> Complex<AutoSimd<[f64; 8]>>

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

source§

fn simd_ln(self) -> Complex<AutoSimd<[f64; 8]>>

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

source§

fn simd_sqrt(self) -> Complex<AutoSimd<[f64; 8]>>

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.

source§

fn simd_powf( self, exp: <Complex<AutoSimd<[f64; 8]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f64; 8]>>

Raises self to a floating point power.

source§

fn simd_log(self, base: AutoSimd<[f64; 8]>) -> Complex<AutoSimd<[f64; 8]>>

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

source§

fn simd_powc( self, exp: Complex<AutoSimd<[f64; 8]>> ) -> Complex<AutoSimd<[f64; 8]>>

Raises self to a complex power.

source§

fn simd_sin(self) -> Complex<AutoSimd<[f64; 8]>>

Computes the sine of self.

source§

fn simd_cos(self) -> Complex<AutoSimd<[f64; 8]>>

Computes the cosine of self.

source§

fn simd_tan(self) -> Complex<AutoSimd<[f64; 8]>>

Computes the tangent of self.

source§

fn simd_asin(self) -> Complex<AutoSimd<[f64; 8]>>

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.

source§

fn simd_acos(self) -> Complex<AutoSimd<[f64; 8]>>

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

source§

fn simd_atan(self) -> Complex<AutoSimd<[f64; 8]>>

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.

source§

fn simd_sinh(self) -> Complex<AutoSimd<[f64; 8]>>

Computes the hyperbolic sine of self.

source§

fn simd_cosh(self) -> Complex<AutoSimd<[f64; 8]>>

Computes the hyperbolic cosine of self.

source§

fn simd_tanh(self) -> Complex<AutoSimd<[f64; 8]>>

Computes the hyperbolic tangent of self.

source§

fn simd_asinh(self) -> Complex<AutoSimd<[f64; 8]>>

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.

source§

fn simd_acosh(self) -> Complex<AutoSimd<[f64; 8]>>

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

source§

fn simd_atanh(self) -> Complex<AutoSimd<[f64; 8]>>

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.

§

type SimdRealField = AutoSimd<[f64; 8]>

Type of the coefficients of a complex number.
source§

fn simd_horizontal_sum( self ) -> <Complex<AutoSimd<[f64; 8]>> as SimdValue>::Element

Computes the sum of all the lanes of self.
source§

fn simd_horizontal_product( self ) -> <Complex<AutoSimd<[f64; 8]>> as SimdValue>::Element

Computes the product of all the lanes of self.
source§

fn from_simd_real( re: <Complex<AutoSimd<[f64; 8]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f64; 8]>>

Builds a pure-real complex number from the given value.
source§

fn simd_real( self ) -> <Complex<AutoSimd<[f64; 8]>> as SimdComplexField>::SimdRealField

The real part of this complex number.
source§

fn simd_imaginary( self ) -> <Complex<AutoSimd<[f64; 8]>> as SimdComplexField>::SimdRealField

The imaginary part of this complex number.
source§

fn simd_argument( self ) -> <Complex<AutoSimd<[f64; 8]>> as SimdComplexField>::SimdRealField

The argument of this complex number.
source§

fn simd_modulus( self ) -> <Complex<AutoSimd<[f64; 8]>> as SimdComplexField>::SimdRealField

The modulus of this complex number.
source§

fn simd_modulus_squared( self ) -> <Complex<AutoSimd<[f64; 8]>> as SimdComplexField>::SimdRealField

The squared modulus of this complex number.
source§

fn simd_norm1( self ) -> <Complex<AutoSimd<[f64; 8]>> as SimdComplexField>::SimdRealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn simd_recip(self) -> Complex<AutoSimd<[f64; 8]>>

source§

fn simd_conjugate(self) -> Complex<AutoSimd<[f64; 8]>>

source§

fn simd_scale( self, factor: <Complex<AutoSimd<[f64; 8]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f64; 8]>>

Multiplies this complex number by factor.
source§

fn simd_unscale( self, factor: <Complex<AutoSimd<[f64; 8]>> as SimdComplexField>::SimdRealField ) -> Complex<AutoSimd<[f64; 8]>>

Divides this complex number by factor.
source§

fn simd_floor(self) -> Complex<AutoSimd<[f64; 8]>>

source§

fn simd_ceil(self) -> Complex<AutoSimd<[f64; 8]>>

source§

fn simd_round(self) -> Complex<AutoSimd<[f64; 8]>>

source§

fn simd_trunc(self) -> Complex<AutoSimd<[f64; 8]>>

source§

fn simd_fract(self) -> Complex<AutoSimd<[f64; 8]>>

source§

fn simd_mul_add( self, a: Complex<AutoSimd<[f64; 8]>>, b: Complex<AutoSimd<[f64; 8]>> ) -> Complex<AutoSimd<[f64; 8]>>

source§

fn simd_abs( self ) -> <Complex<AutoSimd<[f64; 8]>> as SimdComplexField>::SimdRealField

The absolute value of this complex number: self / self.signum(). Read more
source§

fn simd_exp2(self) -> Complex<AutoSimd<[f64; 8]>>

source§

fn simd_exp_m1(self) -> Complex<AutoSimd<[f64; 8]>>

source§

fn simd_ln_1p(self) -> Complex<AutoSimd<[f64; 8]>>

source§

fn simd_log2(self) -> Complex<AutoSimd<[f64; 8]>>

source§

fn simd_log10(self) -> Complex<AutoSimd<[f64; 8]>>

source§

fn simd_cbrt(self) -> Complex<AutoSimd<[f64; 8]>>

source§

fn simd_powi(self, n: i32) -> Complex<AutoSimd<[f64; 8]>>

source§

fn simd_hypot( self, b: Complex<AutoSimd<[f64; 8]>> ) -> <Complex<AutoSimd<[f64; 8]>> as SimdComplexField>::SimdRealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn simd_sin_cos( self ) -> (Complex<AutoSimd<[f64; 8]>>, Complex<AutoSimd<[f64; 8]>>)

source§

fn simd_sinh_cosh( self ) -> (Complex<AutoSimd<[f64; 8]>>, Complex<AutoSimd<[f64; 8]>>)

source§

fn simd_to_polar(self) -> (Self::SimdRealField, Self::SimdRealField)

The polar form of this complex number: (modulus, arg)
source§

fn simd_to_exp(self) -> (Self::SimdRealField, Self)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn simd_signum(self) -> Self

The exponential part of this complex number: self / self.modulus()
source§

fn simd_sinc(self) -> Self

Cardinal sine
source§

fn simd_sinhc(self) -> Self

source§

fn simd_cosc(self) -> Self

Cardinal cos
source§

fn simd_coshc(self) -> Self

source§

impl SimdComplexField for Complex<WideF32x4>

source§

fn simd_exp(self) -> Complex<WideF32x4>

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

source§

fn simd_ln(self) -> Complex<WideF32x4>

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

source§

fn simd_sqrt(self) -> Complex<WideF32x4>

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.

source§

fn simd_powf( self, exp: <Complex<WideF32x4> as SimdComplexField>::SimdRealField ) -> Complex<WideF32x4>

Raises self to a floating point power.

source§

fn simd_log(self, base: WideF32x4) -> Complex<WideF32x4>

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

source§

fn simd_powc(self, exp: Complex<WideF32x4>) -> Complex<WideF32x4>

Raises self to a complex power.

source§

fn simd_sin(self) -> Complex<WideF32x4>

Computes the sine of self.

source§

fn simd_cos(self) -> Complex<WideF32x4>

Computes the cosine of self.

source§

fn simd_tan(self) -> Complex<WideF32x4>

Computes the tangent of self.

source§

fn simd_asin(self) -> Complex<WideF32x4>

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.

source§

fn simd_acos(self) -> Complex<WideF32x4>

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

source§

fn simd_atan(self) -> Complex<WideF32x4>

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.

source§

fn simd_sinh(self) -> Complex<WideF32x4>

Computes the hyperbolic sine of self.

source§

fn simd_cosh(self) -> Complex<WideF32x4>

Computes the hyperbolic cosine of self.

source§

fn simd_tanh(self) -> Complex<WideF32x4>

Computes the hyperbolic tangent of self.

source§

fn simd_asinh(self) -> Complex<WideF32x4>

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.

source§

fn simd_acosh(self) -> Complex<WideF32x4>

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

source§

fn simd_atanh(self) -> Complex<WideF32x4>

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.

§

type SimdRealField = WideF32x4

Type of the coefficients of a complex number.
source§

fn simd_horizontal_sum(self) -> <Complex<WideF32x4> as SimdValue>::Element

Computes the sum of all the lanes of self.
source§

fn simd_horizontal_product(self) -> <Complex<WideF32x4> as SimdValue>::Element

Computes the product of all the lanes of self.
source§

fn from_simd_real( re: <Complex<WideF32x4> as SimdComplexField>::SimdRealField ) -> Complex<WideF32x4>

Builds a pure-real complex number from the given value.
source§

fn simd_real(self) -> <Complex<WideF32x4> as SimdComplexField>::SimdRealField

The real part of this complex number.
source§

fn simd_imaginary( self ) -> <Complex<WideF32x4> as SimdComplexField>::SimdRealField

The imaginary part of this complex number.
source§

fn simd_argument( self ) -> <Complex<WideF32x4> as SimdComplexField>::SimdRealField

The argument of this complex number.
source§

fn simd_modulus(self) -> <Complex<WideF32x4> as SimdComplexField>::SimdRealField

The modulus of this complex number.
source§

fn simd_modulus_squared( self ) -> <Complex<WideF32x4> as SimdComplexField>::SimdRealField

The squared modulus of this complex number.
source§

fn simd_norm1(self) -> <Complex<WideF32x4> as SimdComplexField>::SimdRealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn simd_recip(self) -> Complex<WideF32x4>

source§

fn simd_conjugate(self) -> Complex<WideF32x4>

source§

fn simd_scale( self, factor: <Complex<WideF32x4> as SimdComplexField>::SimdRealField ) -> Complex<WideF32x4>

Multiplies this complex number by factor.
source§

fn simd_unscale( self, factor: <Complex<WideF32x4> as SimdComplexField>::SimdRealField ) -> Complex<WideF32x4>

Divides this complex number by factor.
source§

fn simd_floor(self) -> Complex<WideF32x4>

source§

fn simd_ceil(self) -> Complex<WideF32x4>

source§

fn simd_round(self) -> Complex<WideF32x4>

source§

fn simd_trunc(self) -> Complex<WideF32x4>

source§

fn simd_fract(self) -> Complex<WideF32x4>

source§

fn simd_mul_add( self, a: Complex<WideF32x4>, b: Complex<WideF32x4> ) -> Complex<WideF32x4>

source§

fn simd_abs(self) -> <Complex<WideF32x4> as SimdComplexField>::SimdRealField

The absolute value of this complex number: self / self.signum(). Read more
source§

fn simd_exp2(self) -> Complex<WideF32x4>

source§

fn simd_exp_m1(self) -> Complex<WideF32x4>

source§

fn simd_ln_1p(self) -> Complex<WideF32x4>

source§

fn simd_log2(self) -> Complex<WideF32x4>

source§

fn simd_log10(self) -> Complex<WideF32x4>

source§

fn simd_cbrt(self) -> Complex<WideF32x4>

source§

fn simd_powi(self, n: i32) -> Complex<WideF32x4>

source§

fn simd_hypot( self, b: Complex<WideF32x4> ) -> <Complex<WideF32x4> as SimdComplexField>::SimdRealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn simd_sin_cos(self) -> (Complex<WideF32x4>, Complex<WideF32x4>)

source§

fn simd_sinh_cosh(self) -> (Complex<WideF32x4>, Complex<WideF32x4>)

source§

fn simd_to_polar(self) -> (Self::SimdRealField, Self::SimdRealField)

The polar form of this complex number: (modulus, arg)
source§

fn simd_to_exp(self) -> (Self::SimdRealField, Self)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn simd_signum(self) -> Self

The exponential part of this complex number: self / self.modulus()
source§

fn simd_sinc(self) -> Self

Cardinal sine
source§

fn simd_sinhc(self) -> Self

source§

fn simd_cosc(self) -> Self

Cardinal cos
source§

fn simd_coshc(self) -> Self

source§

impl SimdComplexField for Complex<WideF32x8>

source§

fn simd_exp(self) -> Complex<WideF32x8>

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

source§

fn simd_ln(self) -> Complex<WideF32x8>

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

source§

fn simd_sqrt(self) -> Complex<WideF32x8>

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.

source§

fn simd_powf( self, exp: <Complex<WideF32x8> as SimdComplexField>::SimdRealField ) -> Complex<WideF32x8>

Raises self to a floating point power.

source§

fn simd_log(self, base: WideF32x8) -> Complex<WideF32x8>

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

source§

fn simd_powc(self, exp: Complex<WideF32x8>) -> Complex<WideF32x8>

Raises self to a complex power.

source§

fn simd_sin(self) -> Complex<WideF32x8>

Computes the sine of self.

source§

fn simd_cos(self) -> Complex<WideF32x8>

Computes the cosine of self.

source§

fn simd_tan(self) -> Complex<WideF32x8>

Computes the tangent of self.

source§

fn simd_asin(self) -> Complex<WideF32x8>

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.

source§

fn simd_acos(self) -> Complex<WideF32x8>

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

source§

fn simd_atan(self) -> Complex<WideF32x8>

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.

source§

fn simd_sinh(self) -> Complex<WideF32x8>

Computes the hyperbolic sine of self.

source§

fn simd_cosh(self) -> Complex<WideF32x8>

Computes the hyperbolic cosine of self.

source§

fn simd_tanh(self) -> Complex<WideF32x8>

Computes the hyperbolic tangent of self.

source§

fn simd_asinh(self) -> Complex<WideF32x8>

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.

source§

fn simd_acosh(self) -> Complex<WideF32x8>

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

source§

fn simd_atanh(self) -> Complex<WideF32x8>

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.

§

type SimdRealField = WideF32x8

Type of the coefficients of a complex number.
source§

fn simd_horizontal_sum(self) -> <Complex<WideF32x8> as SimdValue>::Element

Computes the sum of all the lanes of self.
source§

fn simd_horizontal_product(self) -> <Complex<WideF32x8> as SimdValue>::Element

Computes the product of all the lanes of self.
source§

fn from_simd_real( re: <Complex<WideF32x8> as SimdComplexField>::SimdRealField ) -> Complex<WideF32x8>

Builds a pure-real complex number from the given value.
source§

fn simd_real(self) -> <Complex<WideF32x8> as SimdComplexField>::SimdRealField

The real part of this complex number.
source§

fn simd_imaginary( self ) -> <Complex<WideF32x8> as SimdComplexField>::SimdRealField

The imaginary part of this complex number.
source§

fn simd_argument( self ) -> <Complex<WideF32x8> as SimdComplexField>::SimdRealField

The argument of this complex number.
source§

fn simd_modulus(self) -> <Complex<WideF32x8> as SimdComplexField>::SimdRealField

The modulus of this complex number.
source§

fn simd_modulus_squared( self ) -> <Complex<WideF32x8> as SimdComplexField>::SimdRealField

The squared modulus of this complex number.
source§

fn simd_norm1(self) -> <Complex<WideF32x8> as SimdComplexField>::SimdRealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn simd_recip(self) -> Complex<WideF32x8>

source§

fn simd_conjugate(self) -> Complex<WideF32x8>

source§

fn simd_scale( self, factor: <Complex<WideF32x8> as SimdComplexField>::SimdRealField ) -> Complex<WideF32x8>

Multiplies this complex number by factor.
source§

fn simd_unscale( self, factor: <Complex<WideF32x8> as SimdComplexField>::SimdRealField ) -> Complex<WideF32x8>

Divides this complex number by factor.
source§

fn simd_floor(self) -> Complex<WideF32x8>

source§

fn simd_ceil(self) -> Complex<WideF32x8>

source§

fn simd_round(self) -> Complex<WideF32x8>

source§

fn simd_trunc(self) -> Complex<WideF32x8>

source§

fn simd_fract(self) -> Complex<WideF32x8>

source§

fn simd_mul_add( self, a: Complex<WideF32x8>, b: Complex<WideF32x8> ) -> Complex<WideF32x8>

source§

fn simd_abs(self) -> <Complex<WideF32x8> as SimdComplexField>::SimdRealField

The absolute value of this complex number: self / self.signum(). Read more
source§

fn simd_exp2(self) -> Complex<WideF32x8>

source§

fn simd_exp_m1(self) -> Complex<WideF32x8>

source§

fn simd_ln_1p(self) -> Complex<WideF32x8>

source§

fn simd_log2(self) -> Complex<WideF32x8>

source§

fn simd_log10(self) -> Complex<WideF32x8>

source§

fn simd_cbrt(self) -> Complex<WideF32x8>

source§

fn simd_powi(self, n: i32) -> Complex<WideF32x8>

source§

fn simd_hypot( self, b: Complex<WideF32x8> ) -> <Complex<WideF32x8> as SimdComplexField>::SimdRealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn simd_sin_cos(self) -> (Complex<WideF32x8>, Complex<WideF32x8>)

source§

fn simd_sinh_cosh(self) -> (Complex<WideF32x8>, Complex<WideF32x8>)

source§

fn simd_to_polar(self) -> (Self::SimdRealField, Self::SimdRealField)

The polar form of this complex number: (modulus, arg)
source§

fn simd_to_exp(self) -> (Self::SimdRealField, Self)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn simd_signum(self) -> Self

The exponential part of this complex number: self / self.modulus()
source§

fn simd_sinc(self) -> Self

Cardinal sine
source§

fn simd_sinhc(self) -> Self

source§

fn simd_cosc(self) -> Self

Cardinal cos
source§

fn simd_coshc(self) -> Self

source§

impl SimdComplexField for Complex<WideF64x4>

source§

fn simd_exp(self) -> Complex<WideF64x4>

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

source§

fn simd_ln(self) -> Complex<WideF64x4>

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

source§

fn simd_sqrt(self) -> Complex<WideF64x4>

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.

source§

fn simd_powf( self, exp: <Complex<WideF64x4> as SimdComplexField>::SimdRealField ) -> Complex<WideF64x4>

Raises self to a floating point power.

source§

fn simd_log(self, base: WideF64x4) -> Complex<WideF64x4>

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

source§

fn simd_powc(self, exp: Complex<WideF64x4>) -> Complex<WideF64x4>

Raises self to a complex power.

source§

fn simd_sin(self) -> Complex<WideF64x4>

Computes the sine of self.

source§

fn simd_cos(self) -> Complex<WideF64x4>

Computes the cosine of self.

source§

fn simd_tan(self) -> Complex<WideF64x4>

Computes the tangent of self.

source§

fn simd_asin(self) -> Complex<WideF64x4>

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.

source§

fn simd_acos(self) -> Complex<WideF64x4>

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

source§

fn simd_atan(self) -> Complex<WideF64x4>

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.

source§

fn simd_sinh(self) -> Complex<WideF64x4>

Computes the hyperbolic sine of self.

source§

fn simd_cosh(self) -> Complex<WideF64x4>

Computes the hyperbolic cosine of self.

source§

fn simd_tanh(self) -> Complex<WideF64x4>

Computes the hyperbolic tangent of self.

source§

fn simd_asinh(self) -> Complex<WideF64x4>

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.

source§

fn simd_acosh(self) -> Complex<WideF64x4>

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

source§

fn simd_atanh(self) -> Complex<WideF64x4>

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.

§

type SimdRealField = WideF64x4

Type of the coefficients of a complex number.
source§

fn simd_horizontal_sum(self) -> <Complex<WideF64x4> as SimdValue>::Element

Computes the sum of all the lanes of self.
source§

fn simd_horizontal_product(self) -> <Complex<WideF64x4> as SimdValue>::Element

Computes the product of all the lanes of self.
source§

fn from_simd_real( re: <Complex<WideF64x4> as SimdComplexField>::SimdRealField ) -> Complex<WideF64x4>

Builds a pure-real complex number from the given value.
source§

fn simd_real(self) -> <Complex<WideF64x4> as SimdComplexField>::SimdRealField

The real part of this complex number.
source§

fn simd_imaginary( self ) -> <Complex<WideF64x4> as SimdComplexField>::SimdRealField

The imaginary part of this complex number.
source§

fn simd_argument( self ) -> <Complex<WideF64x4> as SimdComplexField>::SimdRealField

The argument of this complex number.
source§

fn simd_modulus(self) -> <Complex<WideF64x4> as SimdComplexField>::SimdRealField

The modulus of this complex number.
source§

fn simd_modulus_squared( self ) -> <Complex<WideF64x4> as SimdComplexField>::SimdRealField

The squared modulus of this complex number.
source§

fn simd_norm1(self) -> <Complex<WideF64x4> as SimdComplexField>::SimdRealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn simd_recip(self) -> Complex<WideF64x4>

source§

fn simd_conjugate(self) -> Complex<WideF64x4>

source§

fn simd_scale( self, factor: <Complex<WideF64x4> as SimdComplexField>::SimdRealField ) -> Complex<WideF64x4>

Multiplies this complex number by factor.
source§

fn simd_unscale( self, factor: <Complex<WideF64x4> as SimdComplexField>::SimdRealField ) -> Complex<WideF64x4>

Divides this complex number by factor.
source§

fn simd_floor(self) -> Complex<WideF64x4>

source§

fn simd_ceil(self) -> Complex<WideF64x4>

source§

fn simd_round(self) -> Complex<WideF64x4>

source§

fn simd_trunc(self) -> Complex<WideF64x4>

source§

fn simd_fract(self) -> Complex<WideF64x4>

source§

fn simd_mul_add( self, a: Complex<WideF64x4>, b: Complex<WideF64x4> ) -> Complex<WideF64x4>

source§

fn simd_abs(self) -> <Complex<WideF64x4> as SimdComplexField>::SimdRealField

The absolute value of this complex number: self / self.signum(). Read more
source§

fn simd_exp2(self) -> Complex<WideF64x4>

source§

fn simd_exp_m1(self) -> Complex<WideF64x4>

source§

fn simd_ln_1p(self) -> Complex<WideF64x4>

source§

fn simd_log2(self) -> Complex<WideF64x4>

source§

fn simd_log10(self) -> Complex<WideF64x4>

source§

fn simd_cbrt(self) -> Complex<WideF64x4>

source§

fn simd_powi(self, n: i32) -> Complex<WideF64x4>

source§

fn simd_hypot( self, b: Complex<WideF64x4> ) -> <Complex<WideF64x4> as SimdComplexField>::SimdRealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn simd_sin_cos(self) -> (Complex<WideF64x4>, Complex<WideF64x4>)

source§

fn simd_sinh_cosh(self) -> (Complex<WideF64x4>, Complex<WideF64x4>)

source§

fn simd_to_polar(self) -> (Self::SimdRealField, Self::SimdRealField)

The polar form of this complex number: (modulus, arg)
source§

fn simd_to_exp(self) -> (Self::SimdRealField, Self)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn simd_signum(self) -> Self

The exponential part of this complex number: self / self.modulus()
source§

fn simd_sinc(self) -> Self

Cardinal sine
source§

fn simd_sinhc(self) -> Self

source§

fn simd_cosc(self) -> Self

Cardinal cos
source§

fn simd_coshc(self) -> Self

source§

impl<N> SimdValue for Complex<N>
where N: SimdValue,

§

type Element = Complex<<N as SimdValue>::Element>

The type of the elements of each lane of this SIMD value.
§

type SimdBool = <N as SimdValue>::SimdBool

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: <Complex<N> as SimdValue>::Element) -> Complex<N>

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> <Complex<N> as SimdValue>::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked( &self, i: usize ) -> <Complex<N> as SimdValue>::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: <Complex<N> as SimdValue>::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked( &mut self, i: usize, val: <Complex<N> as SimdValue>::Element )

Replaces the i-th lane of self by val without bound-checking.
source§

fn select( self, cond: <Complex<N> as SimdValue>::SimdBool, other: Complex<N> ) -> Complex<N>

Merges self and other depending on the lanes of cond. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the - operator.
source§

fn sub( self, other: &Complex<T> ) -> <&'a Complex<T> as Sub<&'b Complex<T>>>::Output

Performs the - operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the - operator.
source§

fn sub(self, other: &Complex<T>) -> <Complex<T> as Sub<&'a Complex<T>>>::Output

Performs the - operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the - operator.
source§

fn sub(self, other: &T) -> <&'b Complex<T> as Sub<&'a T>>::Output

Performs the - operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the - operator.
source§

fn sub(self, other: &T) -> <Complex<T> as Sub<&'a T>>::Output

Performs the - operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the - operator.
source§

fn sub(self, other: Complex<T>) -> <&'a Complex<T> as Sub<Complex<T>>>::Output

Performs the - operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the - operator.
source§

fn sub(self, other: T) -> <&'a Complex<T> as Sub<T>>::Output

Performs the - operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the - operator.
source§

fn sub(self, other: T) -> <Complex<T> as Sub<T>>::Output

Performs the - operation. Read more
source§

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

§

type Output = Complex<T>

The resulting type after applying the - operator.
source§

fn sub(self, other: Complex<T>) -> <Complex<T> as Sub>::Output

Performs the - operation. Read more
source§

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

source§

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

Performs the -= operation. Read more
source§

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

source§

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

Performs the -= operation. Read more
source§

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

source§

fn sub_assign(&mut self, other: T)

Performs the -= operation. Read more
source§

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

source§

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

Performs the -= operation. Read more
source§

impl<N1, N2> SubsetOf<Complex<N2>> for Complex<N1>
where N2: SupersetOf<N1>,

source§

fn to_superset(&self) -> Complex<N2>

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset_unchecked(element: &Complex<N2>) -> Complex<N1>

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(c: &Complex<N2>) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

fn from_superset(element: &T) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

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

source§

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

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

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

source§

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

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

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

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> UlpsEq for Complex<T>
where T: UlpsEq, <T as AbsDiffEq>::Epsilon: Clone,

source§

fn default_max_ulps() -> u32

The default ULPs to tolerate when testing values that are far-apart. Read more
source§

fn ulps_eq( &self, other: &Complex<T>, epsilon: <T as AbsDiffEq>::Epsilon, max_ulps: u32 ) -> bool

A test for equality that uses units in the last place (ULP) if the values are far apart.
source§

fn ulps_ne(&self, other: &Rhs, epsilon: Self::Epsilon, max_ulps: u32) -> bool

The inverse of UlpsEq::ulps_eq.
source§

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

source§

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

Formats the value using the given formatter.
source§

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

source§

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

Formats the value using the given formatter.
source§

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

source§

fn zero() -> Complex<T>

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 for Complex<T>
where T: Copy,

source§

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

source§

impl<N> Field for Complex<N>

source§

impl<N> PrimitiveSimdValue for Complex<N>

source§

impl<T> StructuralPartialEq for Complex<T>

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

§

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

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> ArchivePointee for T

§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
source§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CallHasher for T
where T: Hash + ?Sized,

source§

default fn get_hash<H, B>(value: &H, build_hasher: &B) -> u64
where H: Hash + ?Sized, B: BuildHasher,

source§

impl<F, W, T, D> Deserialize<With<T, W>, D> for F
where W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,

source§

fn deserialize( &self, deserializer: &mut D ) -> Result<With<T, W>, <D as Fallible>::Error>

Deserializes using the given deserializer
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> LayoutRaw for T

source§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Gets the layout of the type.
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Pointee for T

§

type Metadata = ()

The type for metadata in pointers and references to Self.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> SimdComplexField for T
where T: ComplexField,

§

type SimdRealField = <T as ComplexField>::RealField

Type of the coefficients of a complex number.
source§

fn from_simd_real(re: <T as SimdComplexField>::SimdRealField) -> T

Builds a pure-real complex number from the given value.
source§

fn simd_real(self) -> <T as SimdComplexField>::SimdRealField

The real part of this complex number.
source§

fn simd_imaginary(self) -> <T as SimdComplexField>::SimdRealField

The imaginary part of this complex number.
source§

fn simd_modulus(self) -> <T as SimdComplexField>::SimdRealField

The modulus of this complex number.
source§

fn simd_modulus_squared(self) -> <T as SimdComplexField>::SimdRealField

The squared modulus of this complex number.
source§

fn simd_argument(self) -> <T as SimdComplexField>::SimdRealField

The argument of this complex number.
source§

fn simd_norm1(self) -> <T as SimdComplexField>::SimdRealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn simd_scale(self, factor: <T as SimdComplexField>::SimdRealField) -> T

Multiplies this complex number by factor.
source§

fn simd_unscale(self, factor: <T as SimdComplexField>::SimdRealField) -> T

Divides this complex number by factor.
source§

fn simd_to_polar( self ) -> (<T as SimdComplexField>::SimdRealField, <T as SimdComplexField>::SimdRealField)

The polar form of this complex number: (modulus, arg)
source§

fn simd_to_exp(self) -> (<T as SimdComplexField>::SimdRealField, T)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn simd_signum(self) -> T

The exponential part of this complex number: self / self.modulus()
source§

fn simd_floor(self) -> T

source§

fn simd_ceil(self) -> T

source§

fn simd_round(self) -> T

source§

fn simd_trunc(self) -> T

source§

fn simd_fract(self) -> T

source§

fn simd_mul_add(self, a: T, b: T) -> T

source§

fn simd_abs(self) -> <T as SimdComplexField>::SimdRealField

The absolute value of this complex number: self / self.signum(). Read more
source§

fn simd_hypot(self, other: T) -> <T as SimdComplexField>::SimdRealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn simd_recip(self) -> T

source§

fn simd_conjugate(self) -> T

source§

fn simd_sin(self) -> T

source§

fn simd_cos(self) -> T

source§

fn simd_sin_cos(self) -> (T, T)

source§

fn simd_sinh_cosh(self) -> (T, T)

source§

fn simd_tan(self) -> T

source§

fn simd_asin(self) -> T

source§

fn simd_acos(self) -> T

source§

fn simd_atan(self) -> T

source§

fn simd_sinh(self) -> T

source§

fn simd_cosh(self) -> T

source§

fn simd_tanh(self) -> T

source§

fn simd_asinh(self) -> T

source§

fn simd_acosh(self) -> T

source§

fn simd_atanh(self) -> T

source§

fn simd_sinc(self) -> T

Cardinal sine
source§

fn simd_sinhc(self) -> T

source§

fn simd_cosc(self) -> T

Cardinal cos
source§

fn simd_coshc(self) -> T

source§

fn simd_log(self, base: <T as SimdComplexField>::SimdRealField) -> T

source§

fn simd_log2(self) -> T

source§

fn simd_log10(self) -> T

source§

fn simd_ln(self) -> T

source§

fn simd_ln_1p(self) -> T

source§

fn simd_sqrt(self) -> T

source§

fn simd_exp(self) -> T

source§

fn simd_exp2(self) -> T

source§

fn simd_exp_m1(self) -> T

source§

fn simd_powi(self, n: i32) -> T

source§

fn simd_powf(self, n: <T as SimdComplexField>::SimdRealField) -> T

source§

fn simd_powc(self, n: T) -> T

source§

fn simd_cbrt(self) -> T

source§

fn simd_horizontal_sum(self) -> <T as SimdValue>::Element

Computes the sum of all the lanes of self.
source§

fn simd_horizontal_product(self) -> <T as SimdValue>::Element

Computes the product of all the lanes of self.
source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
source§

unsafe fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T, Right> ClosedAdd<Right> for T
where T: Add<Right, Output = T> + AddAssign<Right>,

source§

impl<T, Right> ClosedAdd<Right> for T
where T: Add<Right, Output = T> + AddAssign<Right>,

source§

impl<T, Right> ClosedDiv<Right> for T
where T: Div<Right, Output = T> + DivAssign<Right>,

source§

impl<T, Right> ClosedDiv<Right> for T
where T: Div<Right, Output = T> + DivAssign<Right>,

source§

impl<T, Right> ClosedMul<Right> for T
where T: Mul<Right, Output = T> + MulAssign<Right>,

source§

impl<T, Right> ClosedMul<Right> for T
where T: Mul<Right, Output = T> + MulAssign<Right>,

source§

impl<T> ClosedNeg for T
where T: Neg<Output = T>,

source§

impl<T> ClosedNeg for T
where T: Neg<Output = T>,

source§

impl<T, Right> ClosedSub<Right> for T
where T: Sub<Right, Output = T> + SubAssign<Right>,

source§

impl<T, Right> ClosedSub<Right> for T
where T: Sub<Right, Output = T> + SubAssign<Right>,

source§

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

source§

impl<T> NumAssign for T
where T: Num + NumAssignOps,

source§

impl<T, Rhs> NumAssignOps<Rhs> for T
where T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,

source§

impl<T> NumAssignRef for T
where T: NumAssign + for<'r> NumAssignOps<&'r T>,

source§

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

source§

impl<T> NumRef for T
where T: Num + for<'r> NumOps<&'r T>,

source§

impl<T, Base> RefNum<Base> for T
where T: NumOps<Base, Base> + for<'r> NumOps<&'r Base, Base>,

source§

impl<T> Scalar for T
where T: 'static + Clone + PartialEq + Debug,