use na::{DefaultAllocator, Real, Scalar}; use crate::aliases::{TMat, TVec}; use crate::traits::{Alloc, Dimension, Number}; /// The determinant of the matrix `m`. pub fn determinant(m: &TMat) -> N where DefaultAllocator: Alloc { m.determinant() } /// The inverse of the matrix `m`. pub fn inverse(m: &TMat) -> TMat where DefaultAllocator: Alloc { m.clone() .try_inverse() .unwrap_or_else(TMat::::zeros) } /// Component-wise multiplication of two matrices. pub fn matrix_comp_mult( x: &TMat, y: &TMat, ) -> TMat where DefaultAllocator: Alloc, { x.component_mul(y) } /// Treats the first parameter `c` as a column vector and the second parameter `r` as a row vector and does a linear algebraic matrix multiply `c * r`. pub fn outer_product( c: &TVec, r: &TVec, ) -> TMat where DefaultAllocator: Alloc, { c * r.transpose() } /// The transpose of the matrix `m`. pub fn transpose(x: &TMat) -> TMat where DefaultAllocator: Alloc { x.transpose() }