Skip to main content

Complex

Struct Complex 

Source
pub struct Complex {
    pub re: f64,
    pub im: f64,
}
Expand description

A complex number z = re + i·im.

Fields§

§re: f64

Real part.

§im: f64

Imaginary part.

Implementations§

Source§

impl Complex

Source

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

Construct a new complex number.

Source

pub fn from_real(re: f64) -> Self

The purely real number re + 0i.

Source

pub fn from_imag(im: f64) -> Self

The purely imaginary number 0 + im·i.

Source

pub fn zero() -> Self

The additive identity 0.

Source

pub fn one() -> Self

The multiplicative identity 1.

Source

pub fn i() -> Self

The imaginary unit i.

Source

pub fn abs(&self) -> f64

Absolute value (modulus) |z| = sqrt(re² + im²).

Source

pub fn arg(&self) -> f64

Argument (phase angle) arg(z) = atan2(im, re) in radians.

Source

pub fn conj(&self) -> Self

Complex conjugate z̄ = re − i·im.

Source

pub fn norm_sq(&self) -> f64

Squared modulus |z|².

Source

pub fn inv(&self) -> Self

Multiplicative inverse 1/z.

Returns NaN-valued complex if z == 0.

Source

pub fn exp(&self) -> Self

Complex exponential e^z = e^re · (cos(im) + i·sin(im)).

Source

pub fn ln(&self) -> Self

Principal natural logarithm ln(z) = ln|z| + i·arg(z).

Source

pub fn sqrt(&self) -> Self

Principal square root √z.

Source

pub fn pow(&self, n: f64) -> Self

Raise to a real power: z^n = |z|^n · e^(i·n·arg(z)).

Source

pub fn cpow(&self, w: Self) -> Self

Raise to a complex power: z^w = e^(w · ln z).

Source

pub fn sin(&self) -> Self

Complex sine sin(z) = sin(re)·cosh(im) + i·cos(re)·sinh(im).

Source

pub fn cos(&self) -> Self

Complex cosine cos(z) = cos(re)·cosh(im) − i·sin(re)·sinh(im).

Source

pub fn sinh(&self) -> Self

Complex hyperbolic sine sinh(z) = sinh(re)·cos(im) + i·cosh(re)·sin(im).

Source

pub fn cosh(&self) -> Self

Complex hyperbolic cosine cosh(z) = cosh(re)·cos(im) + i·sinh(re)·sin(im).

Source

pub fn tan(&self) -> Self

Complex tangent tan(z) = sin(z)/cos(z).

Source

pub fn approx_eq(&self, other: Self, tol: f64) -> bool

Test approximate equality within tolerance.

Trait Implementations§

Source§

impl Add<f64> for Complex

Source§

type Output = Complex

The resulting type after applying the + operator.
Source§

fn add(self, rhs: f64) -> Self

Performs the + operation. Read more
Source§

impl Add for Complex

Source§

type Output = Complex

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
Source§

impl Clone for Complex

Source§

fn clone(&self) -> Complex

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Complex

Source§

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

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

impl Display for Complex

Source§

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

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

impl Div<f64> for Complex

Source§

type Output = Complex

The resulting type after applying the / operator.
Source§

fn div(self, rhs: f64) -> Self

Performs the / operation. Read more
Source§

impl Div for Complex

Source§

type Output = Complex

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
Source§

impl Mul<f64> for Complex

Source§

type Output = Complex

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: f64) -> Self

Performs the * operation. Read more
Source§

impl Mul for Complex

Source§

type Output = Complex

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
Source§

impl Neg for Complex

Source§

type Output = Complex

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self

Performs the unary - operation. Read more
Source§

impl PartialEq for Complex

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

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

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

impl Sub for Complex

Source§

type Output = Complex

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
Source§

impl Copy for Complex

Source§

impl StructuralPartialEq for Complex

Auto Trait Implementations§

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> 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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
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> Same for T

Source§

type Output = T

Should always be 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<T> ToOwned for T
where T: Clone,

Source§

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§

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

Source§

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

Source§

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<T> ClosedNeg for T
where T: Neg<Output = T>,

Source§

impl<T> Scalar for T
where T: 'static + Clone + PartialEq + Debug,