Type Definition matrix_rs::SquareMatrix

source ·
pub type SquareMatrix<const D: usize> = Matrix<D, D>;

Implementations§

source§

impl<const D: usize> SquareMatrix<D>

source

pub fn identity() -> Self

source

pub fn determinant(&self) -> f32

source

pub fn has_inverse(&self) -> bool

source

pub fn inverse(&self) -> Option<Self>