Package de.uka.ipd.sdq.probfunction
Interface GammaDistribution
-
- All Superinterfaces:
org.eclipse.emf.cdo.CDOObject
,org.eclipse.emf.cdo.common.id.CDOWithID
,ContinuousPDF
,EObject
,Notifier
,ProbabilityDensityFunction
,ProbabilityFunction
,UnitCarryingElement
- All Known Implementing Classes:
GammaDistributionImpl
public interface GammaDistribution extends ContinuousPDF
A representation of the model object 'Gamma Distribution '. Gamma distribution with shape parameter alpha > 0 (also called k in Wikipedia) and scale parameter theta > 0 (called lambda in umontreal.iro.lecuyer.probdist.GammaDist). The scale parameter theta is the inverse of the rate beta which is also sometimes given to characterise a Gamma distribution.The following features are supported:
- See Also:
ProbfunctionPackage.getGammaDistribution()
- Generated class or method.
- EMF model class or method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getAlpha()
Returns the value of the 'Alpha' attribute.double
getTheta()
Returns the value of the 'Theta' attribute.void
setAlpha(double value)
Sets the value of the 'Alpha
' attribute.void
setTheta(double value)
Sets the value of the 'Theta
' attribute.-
Methods inherited from interface org.eclipse.emf.cdo.CDOObject
cdoConflict, cdoDirectResource, cdoHistory, cdoID, cdoInvalid, cdoLockState, cdoPermission, cdoPrefetch, cdoReadLock, cdoReload, cdoResource, cdoRevision, cdoRevision, cdoState, cdoView, cdoWriteLock, cdoWriteOption
-
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
-
Methods inherited from interface org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
-
Methods inherited from interface de.uka.ipd.sdq.units.UnitCarryingElement
getUnit, isSetUnit, unsetUnit
-
-
-
-
Field Detail
-
copyright
static final String copyright
- See Also:
- Constant Field Values
- Generated class or method.
-
-
Method Detail
-
getAlpha
double getAlpha()
Returns the value of the 'Alpha' attribute.If the meaning of the 'Alpha' attribute isn't clear, there really should be more of a description here...
Shape parameter- Returns:
- the value of the 'Alpha' attribute.
- See Also:
setAlpha(double)
,ProbfunctionPackage.getGammaDistribution_Alpha()
- Generated class or method.
- EMF model class or method.
- required="true" ordered="false"
-
setAlpha
void setAlpha(double value)
Sets the value of the 'Alpha
' attribute.- Parameters:
value
- the new value of the 'Alpha' attribute.- See Also:
getAlpha()
- Generated class or method.
-
getTheta
double getTheta()
Returns the value of the 'Theta' attribute. Scale parameter, which is the inverse of the rate parameter beta which is also sometimes given to characterise a Gamma distribution.- Returns:
- the value of the 'Theta' attribute.
- See Also:
setTheta(double)
,ProbfunctionPackage.getGammaDistribution_Theta()
- Generated class or method.
- EMF model class or method.
- required="true" ordered="false"
-
setTheta
void setTheta(double value)
Sets the value of the 'Theta
' attribute.- Parameters:
value
- the new value of the 'Theta' attribute.- See Also:
getTheta()
- Generated class or method.
-
-