Fix TinyMatrix determinant for N>3
Compare changes
- Stéphane Del Pino authored
The case of zero determinant was not treated correctly when dealing with N*N matrices with N>4 For these matrices, a Gauss-pivot is used but it was incorrect in the singular case
+ 20
− 11
@@ -50,14 +50,16 @@ class TinyMatrix
@@ -73,7 +75,8 @@ class TinyMatrix
@@ -90,7 +93,8 @@ class TinyMatrix
@@ -342,14 +346,19 @@ det(const TinyMatrix<N, T>& A)