Package edu.cmu.tetrad.util.dist
Class TruncatedNormal
java.lang.Object
edu.cmu.tetrad.util.dist.TruncatedNormal
- All Implemented Interfaces:
- Distribution,- TetradSerializable,- Serializable
A normal distribution that allows its parameters to be set and allows random sampling. The parameters are 0 = mean, 1
 = standard deviation.
- Version:
- $Id: $Id
- Author:
- josephramsey
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptiongetName()getName.intgetNumParameters.doublegetParameter(int index) Returns the index'th parameter.getParameterName(int index) The name of the index'th parameter, for display purposes.doublenextRandom.static TruncatedNormalGenerates a simple exemplar of this class to test serialization.voidsetParameter(int index, double value) Sets the index'th parameter to the given value.toString()toString.
- 
Method Details- 
serializableInstanceGenerates a simple exemplar of this class to test serialization.- Returns:
- The exemplar.
 
- 
getNamegetName. - Specified by:
- getNamein interface- Distribution
- Returns:
- a Stringobject
 
- 
setParameterpublic void setParameter(int index, double value) Sets the index'th parameter to the given value.- Specified by:
- setParameterin interface- Distribution
- Parameters:
- index- Ibid. Must be >= 0 and < # parameters.
- value- Ibid.
 
- 
getParameterpublic double getParameter(int index) Returns the index'th parameter.- Specified by:
- getParameterin interface- Distribution
- Parameters:
- index- Ibid. Muist be <= 0 and < # parameters.
- Returns:
- The Ibid.
 
- 
getParameterNameThe 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()getNumParameters. - Specified by:
- getNumParametersin interface- Distribution
- Returns:
- the number of parameters = 2.
 
- 
nextRandompublic double nextRandom()nextRandom. - Specified by:
- nextRandomin interface- Distribution
- Returns:
- the next random sample from the distribution.
 
- 
toStringtoString. 
 
-