Added normally distributed generation function to RNG

(cherry picked from commit 5f137925dc)
This commit is contained in:
Chaosus
2019-03-14 13:53:08 +03:00
committed by Hein-Pieter van Braam-Stewart
parent ff3987598e
commit 71753edeae
4 changed files with 23 additions and 0 deletions

View File

@@ -27,6 +27,17 @@
Generates pseudo-random float between [code]from[/code] and [code]to[/code], inclusive.
</description>
</method>
<method name="randfn">
<return type="float">
</return>
<argument index="0" name="mean" type="float" default="0.0">
</argument>
<argument index="1" name="deviation" type="float" default="1.0">
</argument>
<description>
Generates normally(gaussian) distributed pseudo-random number, using Box-Muller transform with the specified [code]mean[/code] and a standard [code]deviation[/code].
</description>
</method>
<method name="randi">
<return type="int">
</return>