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
fn determinant(&self) -> N
Returns the determinant of m
.