Commit 7272bc74 authored by Davis King's avatar Davis King

Made fill_gaussian() default to a standard normal distribution.

parent 9da21b0b
...@@ -28,8 +28,8 @@ namespace dlib ...@@ -28,8 +28,8 @@ namespace dlib
void fill_gaussian ( void fill_gaussian (
tensor& data, tensor& data,
float mean, float mean = 0,
float stddev float stddev = 1
); );
/*! /*!
requires requires
......
...@@ -72,8 +72,8 @@ namespace dlib { namespace tt ...@@ -72,8 +72,8 @@ namespace dlib { namespace tt
void fill_gaussian ( void fill_gaussian (
tensor& data, tensor& data,
float mean, float mean = 0,
float stddev float stddev = 1
); );
/*! /*!
requires requires
......
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