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

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

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

: linalg is not in good shape.

A real or complex number.

Required Methods

fn sqrt_real(self) -> Self

Deprecated

: linalg is not in good shape.

Provided Methods

fn conjugate(self) -> Self

Deprecated

: linalg is not in good shape.

fn is_complex() -> bool

Deprecated

: linalg is not in good shape.

Implementors