pub trait MatMinor<T, Other> { // Required method fn minor(&self, row: u32, column: u32) -> T; }
trait for the minor of a matrix the minor is the determinant of the matrix without the given row and column