MatrixInvert method

MatrixD MatrixInvert(
  1. MatrixD mat
)

Implementation

MatrixD MatrixInvert(
  MatrixD mat,
) => run(
  () => _debugLabels.MatrixInvert(mat),
  () => mat.invert(),
);