Package edu.cmu.tetrad.util.dist
Class Uniform
java.lang.Object
edu.cmu.tetrad.util.dist.Uniform
- All Implemented Interfaces:
- Distribution,- TetradSerializable,- Serializable
For given a, b (a < b), returns a point chosen uniformly from [a, b]. The
 parameters are 0 = a, 1 = b.
- Author:
- Joseph Ramsey jdramsey@andrew.cmu.edu
- See Also:
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptiongetName()intdoublegetParameter(int index) getParameterName(int index) The name of the index'th parameter, for display purposes.doublestatic UniformGenerates a simple exemplar of this class to test serialization.voidsetParameter(int index, double value) Sets the value of the i'th parameter.toString()
- 
Constructor Details- 
Uniformpublic Uniform(double a, double b) 
 
- 
- 
Method Details- 
serializableInstanceGenerates a simple exemplar of this class to test serialization.
- 
setParameterpublic void setParameter(int index, double value) Sets the value of the i'th parameter.- Specified by:
- setParameterin interface- Distribution
- Parameters:
- index- Ibid. Must be >= 0 and < # parameters.
- value- Ibid.
 
- 
getParameterpublic double getParameter(int index) - Specified by:
- getParameterin interface- Distribution
- Parameters:
- index- Ibid. Muist be <= 0 and < # parameters.
- Returns:
- the value of the ith parameter.
 
- 
getParameterNameDescription copied from interface:DistributionThe name of the index'th parameter, for display purposes.- Specified by:
- getParameterNamein interface- Distribution
- Parameters:
- index- Ibid. Must be >= 0 and < # parameters.
- Returns:
- Ibid.
 
- 
getNumParameterspublic int getNumParameters()- Specified by:
- getNumParametersin interface- Distribution
- Returns:
- the number of parameters = 2.
 
- 
nextRandompublic double nextRandom()- Specified by:
- nextRandomin interface- Distribution
- Returns:
- the next random sample from the distribution.
 
- 
getName- Specified by:
- getNamein interface- Distribution
- Returns:
- Ibid.
 
- 
toString
 
-