diff Framework/Toolbox/LinearAlgebra.h @ 163:8c5b24892ed2 wasm

LinearAlgebra::InvertMatrix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 14 Feb 2018 14:26:26 +0100
parents 197a5ddaf68c
children 8d50e6be565d
line wrap: on
line diff
--- a/Framework/Toolbox/LinearAlgebra.h	Wed Feb 14 12:24:56 2018 +0100
+++ b/Framework/Toolbox/LinearAlgebra.h	Wed Feb 14 14:26:26 2018 +0100
@@ -124,5 +124,8 @@
     void RQDecomposition3x3(Matrix& r,
                             Matrix& q,
                             const Matrix& a);
+
+    void InvertMatrix(Matrix& target,
+                      const Matrix& source);
   };
 }