Javadoc. Replaced MathML entity with numeric character reference.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@539909 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2007-05-20 18:42:50 +00:00
parent a556284602
commit 9b0466f648
1 changed files with 7 additions and 4 deletions

View File

@ -17,10 +17,13 @@
package org.apache.commons.math.random;
/** This class implements a normalized uniform random generator.
* <p>Since it is a normalized random generator, it has a null mean
* and a unit standard deviation. Being also a uniform
* generator, it produces numbers in the range [-&sqrt;(3) ; +&sqrt;(3)].</p>
/**
* This class implements a normalized uniform random generator.
* <p>Since it is a normalized random generator, it generates values
* from a uniform distribution with mean equal to 0 and standard
* deviation equal to 1. Generated values fall in the range
* [-&#x0221A;3, +&#x0221A;3].</p>
*
* @version $Revision:$ $Date$
*/