Commit 43529908 authored by Davis King's avatar Davis King

Fixed potential division by zero.

parent 938e9771
......@@ -154,6 +154,15 @@ namespace dlib
static double normal_cfd(double value, double mean, double stddev)
{
if (stddev == 0)
{
if (value < mean)
return 0;
else if (value > mean)
return 1;
else
return 0.5;
}
value = (value-mean)/stddev;
return 0.5 * erfc(-value / std::sqrt(2.0));
}
......
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