Trait nalgebra::Determinant [] [src]

pub trait Determinant<N> {
    fn determinant(&self) -> N;
}

Trait of objects having a determinant. Typically used by square matrices.

Required Methods

Returns the determinant of m.

Implementors