Package adams.data.distribution
Class F
-
- All Implemented Interfaces:
Destroyable
,GlobalInfoSupporter
,LoggingLevelHandler
,LoggingSupporter
,OptionHandler
,SizeOfHandler
,Serializable
public class F extends AbstractRealDistribution
FDistribution distribution.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
FDistributionDistribution
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected double
m_DenominatorDegreesOfFreedom
the denominator degrees of freedom.protected double
m_InverseCumAccuracy
the inverse cumulative accuracy.protected double
m_NumeratorDegreesOfFreedom
the numerator degrees of freedom.-
Fields inherited from class adams.data.distribution.AbstractRealDistribution
m_Distribution
-
Fields inherited from class adams.core.option.AbstractOptionHandler
m_OptionManager
-
Fields inherited from class adams.core.logging.LoggingObject
m_Logger, m_LoggingIsEnabled, m_LoggingLevel
-
-
Constructor Summary
Constructors Constructor Description F()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
defineOptions()
Adds options to the internal list of options.String
denominatorDegreesOfFreedomTipText()
Returns the tip text for this property.double
getDenominatorDegreesOfFreedom()
Returns the denominator degrees of freedom.double
getInverseCumAccuracy()
Returns the inverse cumulative accuracy.double
getNumeratorDegreesOfFreedom()
Returns the numerator degrees of freedom.org.apache.commons.math3.distribution.RealDistribution
getRealDistribution()
Returns the configured distribution.String
globalInfo()
Returns a string describing the object.String
inverseCumAccuracyTipText()
Returns the tip text for this property.String
numeratorDegreesOfFreedomTipText()
Returns the tip text for this property.void
setDenominatorDegreesOfFreedom(double value)
Sets the denominator degrees of freedom.void
setInverseCumAccuracy(double value)
Sets the inverse cumulative accuracy.void
setNumeratorDegreesOfFreedom(double value)
Sets the numerator degrees of freedom.-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, initialize, loggingLevelTipText, newOptionManager, reset, 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
-
Methods inherited from interface adams.core.logging.LoggingLevelHandler
getLoggingLevel
-
-
-
-
Field Detail
-
m_NumeratorDegreesOfFreedom
protected double m_NumeratorDegreesOfFreedom
the numerator degrees of freedom.
-
m_DenominatorDegreesOfFreedom
protected double m_DenominatorDegreesOfFreedom
the denominator degrees of freedom.
-
m_InverseCumAccuracy
protected double m_InverseCumAccuracy
the inverse cumulative accuracy.
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the object.- Specified by:
globalInfo
in interfaceGlobalInfoSupporter
- Specified by:
globalInfo
in classAbstractOptionHandler
- 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 interfaceOptionHandler
- Overrides:
defineOptions
in classAbstractOptionHandler
-
setNumeratorDegreesOfFreedom
public void setNumeratorDegreesOfFreedom(double value)
Sets the numerator degrees of freedom.- Parameters:
value
- the degrees
-
getNumeratorDegreesOfFreedom
public double getNumeratorDegreesOfFreedom()
Returns the numerator degrees of freedom.- Returns:
- the degrees
-
numeratorDegreesOfFreedomTipText
public String numeratorDegreesOfFreedomTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setDenominatorDegreesOfFreedom
public void setDenominatorDegreesOfFreedom(double value)
Sets the denominator degrees of freedom.- Parameters:
value
- the degrees
-
getDenominatorDegreesOfFreedom
public double getDenominatorDegreesOfFreedom()
Returns the denominator degrees of freedom.- Returns:
- the degrees
-
denominatorDegreesOfFreedomTipText
public String denominatorDegreesOfFreedomTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setInverseCumAccuracy
public void setInverseCumAccuracy(double value)
Sets the inverse cumulative accuracy.- Parameters:
value
- the accuracy
-
getInverseCumAccuracy
public double getInverseCumAccuracy()
Returns the inverse cumulative accuracy.- Returns:
- the accuracy
-
inverseCumAccuracyTipText
public String inverseCumAccuracyTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
getRealDistribution
public org.apache.commons.math3.distribution.RealDistribution getRealDistribution()
Returns the configured distribution.- Specified by:
getRealDistribution
in classAbstractRealDistribution
- Returns:
- the distribution
-
-