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

Implementors