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.
- Version:
- $Id: $Id
- Author:
- josephramsey
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier 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 UniformGenerates 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.
-
Constructor Details
-
Uniform
public Uniform(double a, double b) Constructor for Uniform.
- Parameters:
a- a doubleb- a double
-
-
Method Details
-
serializableInstance
Generates a simple exemplar of this class to test serialization.- Returns:
- a
Uniformobject
-
setParameter
public void setParameter(int index, double value) Sets the index'th parameter to the given value.Sets the value of the i'th parameter.
- Specified by:
setParameterin interfaceDistribution- Parameters:
index- Ibid. Must be >= 0 and < # parameters.value- Ibid.
-
getParameter
public double getParameter(int index) Returns the index'th parameter.- Specified by:
getParameterin interfaceDistribution- Parameters:
index- Ibid. Muist be <= 0 and < # parameters.- Returns:
- The Ibid.
-
getParameterName
The name of the index'th parameter, for display purposes.- Specified by:
getParameterNamein interfaceDistribution- Parameters:
index- Ibid. Must be >= 0 and < # parameters.- Returns:
- Ibid.
-
getNumParameters
public int getNumParameters()getNumParameters.
- Specified by:
getNumParametersin interfaceDistribution- Returns:
- the number of parameters = 2.
-
nextRandom
public double nextRandom()nextRandom.
- Specified by:
nextRandomin interfaceDistribution- Returns:
- the next random sample from the distribution.
-
getName
getName.
- Specified by:
getNamein interfaceDistribution- Returns:
- a
Stringobject
-
toString
toString.
-