updated docs

This commit is contained in:
Davis King 2012-11-24 13:49:02 -05:00
parent dbe14b7f62
commit 36faa29b52
2 changed files with 29 additions and 0 deletions

View File

@ -76,6 +76,8 @@
<item>hash</item>
<item>murmur_hash3</item>
<item>murmur_hash3_128bit</item>
<item>gaussian_random_hash</item>
<item>uniform_random_hash</item>
<item>projection_hash</item>
<item>create_random_projection_hash</item>
</section>
@ -162,6 +164,31 @@
<!-- ************************************************************************* -->
<component>
<name>gaussian_random_hash</name>
<file>dlib/hash.h</file>
<spec_file link="true">dlib/general_hash/random_hashing_abstract.h</spec_file>
<description>
This function uses hashing to generate Gaussian distributed random values
with mean 0 and variance 1.
</description>
</component>
<!-- ************************************************************************* -->
<component>
<name>uniform_random_hash</name>
<file>dlib/hash.h</file>
<spec_file link="true">dlib/general_hash/random_hashing_abstract.h</spec_file>
<description>
This function uses hashing to generate uniform random values in the range [0,1).
</description>
</component>
<!-- ************************************************************************* -->
<component>
<name>murmur_hash3</name>
<file>dlib/hash.h</file>

View File

@ -1016,6 +1016,8 @@
<term file="algorithms.html" name="murmur_hash3"/>
<term file="algorithms.html" name="murmur_hash3_128bit"/>
<term file="algorithms.html" name="hash"/>
<term file="algorithms.html" name="gaussian_random_hash"/>
<term file="algorithms.html" name="uniform_random_hash"/>
<term file="algorithms.html" name="md5"/>