Trait ndarray_linalg::types::AssociatedComplex[][src]

pub trait AssociatedComplex: Sized {
    type Complex;
    fn inject(_: Self) -> Self::Complex;
fn add_complex(self, _: Self::Complex) -> Self::Complex;
fn sub_complex(self, _: Self::Complex) -> Self::Complex;
fn mul_complex(self, _: Self::Complex) -> Self::Complex; }

Define associating complex type

Associated Types

Required Methods

Implementations on Foreign Types

impl AssociatedComplex for f64
[src]

impl AssociatedComplex for f32
[src]

Implementors