| 973 | template <int SizeT, class LayoutT = vtkMatrixUtilities::Layout::Identity, class MatrixT1, |
| 974 | class MatrixT2> |
| 975 | static void InvertMatrix(MatrixT1&& M1, MatrixT2&& M2) |
| 976 | { |
| 977 | vtkMathPrivate::InvertMatrix<SizeT, LayoutT>::Compute( |
| 978 | std::forward<MatrixT1>(M1), std::forward<MatrixT2>(M2)); |
| 979 | } |
| 980 | |
| 981 | /** |
| 982 | * This method solves linear systems M * x = y. |
no test coverage detected