Commit 780f16d1 authored by Davis King's avatar Davis King

Added a missing check for division by zero. This makes the inv() and det() functions

act in a more appropriate way in the face of matrices that are within rounding error
of being singular.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403428
parent 31662ca6
......@@ -477,6 +477,8 @@ namespace dlib
if (j < n-1)
{
if (a(j,j) == 0)
return false;
dum = 1/a(j,j);
for (long i = j+1; i < n; ++i)
a(i,j) *= dum;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment