Made fill_gaussian() default to a standard normal distribution.

This commit is contained in:
Davis King 2016-06-11 08:03:40 -04:00
parent 9da21b0b0c
commit 7272bc74c2
2 changed files with 4 additions and 4 deletions

View File

@ -28,8 +28,8 @@ namespace dlib
void fill_gaussian (
tensor& data,
float mean,
float stddev
float mean = 0,
float stddev = 1
);
/*!
requires

View File

@ -72,8 +72,8 @@ namespace dlib { namespace tt
void fill_gaussian (
tensor& data,
float mean,
float stddev
float mean = 0,
float stddev = 1
);
/*!
requires