Package edu.cmu.tetrad.util.dist
Class Poisson
java.lang.Object
edu.cmu.tetrad.util.dist.Poisson
- All Implemented Interfaces:
- Distribution,- TetradSerializable,- Serializable
Wraps a chi square distribution for purposes of drawing random samples.
 Methods are provided to allow parameters to be manipulated in an interface.
- Author:
- Joseph Ramsey
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptiongetName()intdoublegetParameter(int index) getParameterName(int index) The name of the index'th parameter, for display purposes.doublestatic PoissonGenerates a simple exemplar of this class to test serialization.voidsetParameter(int index, double value) Sets the index'th parameter to the given value.toString()
- 
Method Details- 
serializableInstanceGenerates a simple exemplar of this class to test serialization.- Returns:
- The exemplar.
 
- 
getNumParameterspublic int getNumParameters()- Specified by:
- getNumParametersin interface- Distribution
- Returns:
- Ibid.
 
- 
getName- Specified by:
- getNamein interface- Distribution
- Returns:
- Ibid.
 
- 
setParameterpublic void setParameter(int index, double value) Description copied from interface:DistributionSets 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) - Specified by:
- getParameterin interface- Distribution
- Parameters:
- index- Ibid. Muist be <= 0 and < # parameters.
- Returns:
- The Ibid.
 
- 
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.
 
- 
nextRandompublic double nextRandom()- Specified by:
- nextRandomin interface- Distribution
- Returns:
- Ibid.
 
- 
toString
 
-