Trait ndarray::linalg::ComplexField [] [src]

pub trait ComplexField: Copy + Field {
    fn sqrt_real(self) -> Self;

    fn conjugate(self) -> Self { ... }
    fn is_complex() -> bool { ... }
}

A real or complex number.

Required Methods

fn sqrt_real(self) -> Self

Provided Methods

fn conjugate(self) -> Self

fn is_complex() -> bool

Implementors