Package adams.data.random
Class Uniform
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.data.random.AbstractRandomNumberGenerator<T>
-
- adams.data.random.AbstractSeededRandomNumberGenerator<Double>
-
- adams.data.random.Uniform
-
- All Implemented Interfaces:
adams.core.Destroyable
,adams.core.GlobalInfoSupporter
,adams.core.logging.LoggingLevelHandler
,adams.core.logging.LoggingSupporter
,adams.core.option.OptionHandler
,adams.core.Randomizable
,adams.core.ShallowCopySupporter<adams.data.random.RandomNumberGenerator>
,adams.core.SizeOfHandler
,adams.data.random.RandomDoubleRangeGenerator<Double>
,adams.data.random.RandomNumberGenerator<Double>
,adams.data.random.SeededRandomNumberGenerator<Double>
,Serializable
public class Uniform extends adams.data.random.AbstractSeededRandomNumberGenerator<Double> implements adams.data.random.RandomDoubleRangeGenerator<Double>
Generates random numbers from a uniform random variable.
Valid options are:
-D <int> (property: debugLevel) The greater the number the more additional info the scheme may output to the console (0 = off). default: 0 minimum: 0
-seed <long> (property: seed) The seed value for the random number generator. default: 1
-min-value <double> (property: minValue) The smallest number that could be generated. default: 0.0
-max-value <double> (property: maxValue) The largest number that could be generated. default: 1.0
- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
Random.uniform(double, double)
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected double
m_MaxValue
the maximum value for the numbers to generate.protected double
m_MinValue
the minimum value for the numbers to generate.protected Random
m_Random
the random number generator to use.
-
Constructor Summary
Constructors Constructor Description Uniform()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
check()
Performs optional checks.void
defineOptions()
Adds options to the internal list of options.protected Double
doNext()
Returns the next random number.double
getMaxValue()
Returns the maximum value of the numbers to generate.double
getMinValue()
Returns the minimum value of the numbers to generate.String
globalInfo()
Returns a string describing the object.String
maxValueTipText()
Returns the tip text for this property.String
minValueTipText()
Returns the tip text for this property.void
reset()
Resets the generator.void
setMaxValue(double value)
Sets the maximum value of the numbers to generate.void
setMinValue(double value)
Sets the minimum value of the numbers to generate.-
Methods inherited from class adams.data.random.AbstractSeededRandomNumberGenerator
getSeed, seedTipText, setSeed
-
Methods inherited from class adams.data.random.AbstractRandomNumberGenerator
forCommandLine, forName, getGenerators, next, shallowCopy, shallowCopy
-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, initialize, loggingLevelTipText, newOptionManager, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
Field Detail
-
m_MinValue
protected double m_MinValue
the minimum value for the numbers to generate.
-
m_MaxValue
protected double m_MaxValue
the maximum value for the numbers to generate.
-
m_Random
protected Random m_Random
the random number generator to use.
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the object.- Specified by:
globalInfo
in interfaceadams.core.GlobalInfoSupporter
- Specified by:
globalInfo
in classadams.core.option.AbstractOptionHandler
- Returns:
- a description suitable for displaying in the gui
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptions
in interfaceadams.core.option.OptionHandler
- Overrides:
defineOptions
in classadams.data.random.AbstractSeededRandomNumberGenerator<Double>
-
reset
public void reset()
Resets the generator.
-
setMinValue
public void setMinValue(double value)
Sets the minimum value of the numbers to generate.- Specified by:
setMinValue
in interfaceadams.data.random.RandomDoubleRangeGenerator<Double>
- Parameters:
value
- the minimum
-
getMinValue
public double getMinValue()
Returns the minimum value of the numbers to generate.- Specified by:
getMinValue
in interfaceadams.data.random.RandomDoubleRangeGenerator<Double>
- Returns:
- the minimum
-
minValueTipText
public String minValueTipText()
Returns the tip text for this property.- Specified by:
minValueTipText
in interfaceadams.data.random.RandomDoubleRangeGenerator<Double>
- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setMaxValue
public void setMaxValue(double value)
Sets the maximum value of the numbers to generate.- Specified by:
setMaxValue
in interfaceadams.data.random.RandomDoubleRangeGenerator<Double>
- Parameters:
value
- the maximum
-
getMaxValue
public double getMaxValue()
Returns the maximum value of the numbers to generate.- Specified by:
getMaxValue
in interfaceadams.data.random.RandomDoubleRangeGenerator<Double>
- Returns:
- the maximum
-
maxValueTipText
public String maxValueTipText()
Returns the tip text for this property.- Specified by:
maxValueTipText
in interfaceadams.data.random.RandomDoubleRangeGenerator<Double>
- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
check
protected void check()
Performs optional checks.
Initializes the random number generator.- Overrides:
check
in classadams.data.random.AbstractRandomNumberGenerator<Double>
-
-