Package adams.data.distribution
Class Weibull
-
- All Implemented Interfaces:
Destroyable,GlobalInfoSupporter,LoggingLevelHandler,LoggingSupporter,OptionHandler,SizeOfHandler,Serializable
public class Weibull extends AbstractRealDistribution
Weibull distribution.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
BetaDistribution, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected doublem_Alphathe alpha parameter.protected doublem_Betathe beta parameter.protected doublem_InverseCumAccuracythe inverse cumulative accuracy.-
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 Weibull()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringalphaTipText()Returns the tip text for this property.StringbetaTipText()Returns the tip text for this property.voiddefineOptions()Adds options to the internal list of options.doublegetAlpha()Returns the alpha.doublegetBeta()Returns the beta.doublegetInverseCumAccuracy()Returns the inverse cumulative accuracy.org.apache.commons.math3.distribution.RealDistributiongetRealDistribution()Returns the configured distribution.StringglobalInfo()Returns a string describing the object.StringinverseCumAccuracyTipText()Returns the tip text for this property.voidsetAlpha(double value)Sets the alpha.voidsetBeta(double value)Sets the beta.voidsetInverseCumAccuracy(double value)Sets the inverse cumulative accuracy.-
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
-
-
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the object.- Specified by:
globalInfoin interfaceGlobalInfoSupporter- Specified by:
globalInfoin classAbstractOptionHandler- Returns:
- a description suitable for displaying in the gui
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptionsin interfaceOptionHandler- Overrides:
defineOptionsin classAbstractOptionHandler
-
setAlpha
public void setAlpha(double value)
Sets the alpha.- Parameters:
value- the alpha
-
getAlpha
public double getAlpha()
Returns the alpha.- Returns:
- the alpha
-
alphaTipText
public String alphaTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setBeta
public void setBeta(double value)
Sets the beta.- Parameters:
value- the beta
-
getBeta
public double getBeta()
Returns the beta.- Returns:
- the beta
-
betaTipText
public String betaTipText()
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:
getRealDistributionin classAbstractRealDistribution- Returns:
- the distribution
-
-