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
impl ComplexField for f32impl ComplexField for f64impl<A: Num + Float> ComplexField for Complex<A>