Javadoc only.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@539830 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9f8370f336
commit
a556284602
|
@ -17,7 +17,7 @@
|
|||
|
||||
package org.apache.commons.math.random;
|
||||
|
||||
/** This interface represent a random generator for whole vectors.
|
||||
/** This interface represents a random generator for whole vectors.
|
||||
|
||||
* @version $Id: RandomVectorGenerator.java 1705 2006-09-17 19:57:39Z luc $
|
||||
* @author L. Maisonobe
|
||||
|
|
|
@ -19,8 +19,12 @@ package org.apache.commons.math.random;
|
|||
|
||||
import java.util.Arrays;
|
||||
|
||||
/** This class allows to generate random vectors with uncorrelated components.
|
||||
* @version $Id:$
|
||||
/**
|
||||
* A {@link RandomVectorGenerator} that generates vectors with uncorrelated
|
||||
* components. Components of generated vectors follow (independent) Gaussian
|
||||
* distributions, with parameters supplied in the constructor.
|
||||
*
|
||||
* @version $Revision$
|
||||
*/
|
||||
|
||||
public class UncorrelatedRandomVectorGenerator
|
||||
|
@ -60,7 +64,7 @@ public class UncorrelatedRandomVectorGenerator
|
|||
this.generator = generator;
|
||||
}
|
||||
|
||||
/** Generate a correlated random vector.
|
||||
/** Generate an uncorrelated random vector.
|
||||
* @return a random vector as a newly built array of double
|
||||
*/
|
||||
public double[] nextVector() {
|
||||
|
|
Loading…
Reference in New Issue