pub trait MatNeg: MatrixKind {
    type Output: MatrixKind;

    // Required method
    fn mat_neg<E: Conjugate>(
        mat: <Self as MatrixKind>::Ref<'_, E>
    ) -> <Self::Output as MatrixKind>::Own<E::Canonical>
       where E::Canonical: ComplexField;
}

Required Associated Types§

Required Methods§

source

fn mat_neg<E: Conjugate>( mat: <Self as MatrixKind>::Ref<'_, E> ) -> <Self::Output as MatrixKind>::Own<E::Canonical>

Object Safety§

This trait is not object safe.

Implementors§