[][src]Trait mathru::algebra::abstr::Complex

pub trait Complex: Real {
    fn conj(self) -> Self;
fn arg(self) -> Self; }

Required methods

fn conj(self) -> Self

Returns the complex conjuagte conj(self) = Re(self) - i Im(self)

fn arg(self) -> Self

Loading content...

Implementors

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

fn conj(self) -> Complex<T>[src]

Returns the complex conjuagte conj(self) = Re(self) - i Im(self)

fn arg(self) -> Self[src]

Returns the argument of the complex number

Loading content...