Trait heapless_matrix::matrix_trait::SquareMatrix
source · pub trait SquareMatrix<const N: usize> {
// Required methods
fn det(&self) -> f64;
fn inv<const DOUBLE_COLS: usize>(
&self
) -> Result<Matrix<N, N>, &'static str>;
}
Required Methods§
fn det(&self) -> f64
fn inv<const DOUBLE_COLS: usize>(&self) -> Result<Matrix<N, N>, &'static str>
Object Safety§
This trait is not object safe.