comparison 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
comparison
equal deleted inserted replaced
162:77715c340767 163:8c5b24892ed2
122 * triangular. 122 * triangular.
123 **/ 123 **/
124 void RQDecomposition3x3(Matrix& r, 124 void RQDecomposition3x3(Matrix& r,
125 Matrix& q, 125 Matrix& q,
126 const Matrix& a); 126 const Matrix& a);
127
128 void InvertMatrix(Matrix& target,
129 const Matrix& source);
127 }; 130 };
128 } 131 }