Function inverse_transpose

Source
pub fn inverse_transpose<T, const D: usize>(
    m: Matrix<T, Const<D>, Const<D>, ArrayStorage<T, D, D>>,
) -> Matrix<T, Const<D>, Const<D>, ArrayStorage<T, D, D>>
where T: RealNumber,
Expand description

Compute the transpose of the inverse of a matrix.