Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save felixlindemann/6220463 to your computer and use it in GitHub Desktop.
Save felixlindemann/6220463 to your computer and use it in GitHub Desktop.
Formula presented in HTML5 for transforming Gaussian Random Numbers from Uniform distributed
<math display="block">
<mrow>
<mi>r</mi>
<mo>=</mo>
<msqrt>
<mfrac>
<mrow>
12
</mrow>
<mrow>
n
</mrow>
</mfrac>
</msqrt>
<mo>&InvisibleTimes;</mo>
<mfenced>
<mrow>
<munderover>
<mo>&Sum;</mo>
<mrow>
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mn>n</mn>
</munderover>
<mfenced>
<mrow>
<mn>Rand()</mn>
</mrow>
</mfenced>
<mo>&minus;</mo>
<mfrac>
<mrow>
n
</mrow>
<mrow>
2
</mrow>
</mfrac>
</mrow>
</mfenced>
</mrow>
</math>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment