pub trait SquareMatrixOperations<F> {
// Required methods
fn inverse(&self) -> Result<Self>
where Self: Sized;
fn identity(n: usize) -> Self;
fn minors(&self) -> Self;
fn cofactors(&self) -> Self;
fn determinant(&self) -> F;
}Expand description
Matrix operations that are defined on square matrices.
Required Methods§
sourcefn determinant(&self) -> F
fn determinant(&self) -> F
Compute the matrix determinant