ArcsineMuSigma¶
- 
class ArcsineMuSigma(*args)¶
- Arcsine distribution parameters. - Available constructors:
- ArcsineMuSigma(mu=1.0, sigma=1.0) 
 - Parameters
- mufloat
- Mean. 
- sigmafloat
- Standard deviation - . 
 
 - See also - Notes - The native parameters are defined as follows: - Examples - Create the parameters of the Arcsine distribution: - >>> import openturns as ot >>> parameters = ot.ArcsineMuSigma(8.4, 2.25) - Convert parameters into the native parameters: - >>> print(parameters.evaluate()) [5.21802,11.582] - The gradient of the transformation of the native parameters into the new parameters: - >>> print(parameters.gradient()) [[ 1 1 ] [ -1.41421 1.41421 ]] - Methods - __call__(self, inP)- Call self as a function. - evaluate(self)- Compute native parameters values. - getClassName(self)- Accessor to the object’s name. - getDescription(self)- Get the description of the parameters. - getDistribution(self)- Build a distribution based on a set of native parameters. - getId(self)- Accessor to the object’s id. - getName(self)- Accessor to the object’s name. - getShadowedId(self)- Accessor to the object’s shadowed id. - getValues(self)- Accessor to the parameters values. - getVisibility(self)- Accessor to the object’s visibility state. - gradient(self)- Get the gradient. - hasName(self)- Test if the object is named. - hasVisibleName(self)- Test if the object has a distinguishable name. - inverse(self, inP)- Convert to native parameters. - setName(self, name)- Accessor to the object’s name. - setShadowedId(self, id)- Accessor to the object’s shadowed id. - setValues(self, values)- Accessor to the parameters values. - setVisibility(self, visible)- Accessor to the object’s visibility state. - 
__init__(self, \*args)¶
- Initialize self. See help(type(self)) for accurate signature. 
 - 
getClassName(self)¶
- Accessor to the object’s name. - Returns
- class_namestr
- The object class name (object.__class__.__name__). 
 
 
 - 
getDescription(self)¶
- Get the description of the parameters. - Returns
- collectionDescription
- List of parameters names. 
 
- collection
 
 - 
getDistribution(self)¶
- Build a distribution based on a set of native parameters. - Returns
- distributionDistribution
- Distribution built with the native parameters. 
 
- distribution
 
 - 
getId(self)¶
- Accessor to the object’s id. - Returns
- idint
- Internal unique identifier. 
 
 
 - 
getName(self)¶
- Accessor to the object’s name. - Returns
- namestr
- The name of the object. 
 
 
 - 
getShadowedId(self)¶
- Accessor to the object’s shadowed id. - Returns
- idint
- Internal unique identifier. 
 
 
 - 
getVisibility(self)¶
- Accessor to the object’s visibility state. - Returns
- visiblebool
- Visibility flag. 
 
 
 - 
gradient(self)¶
- Get the gradient. - Returns
- gradientMatrix
- The gradient of the transformation of the native parameters into the new parameters. 
 
- gradient
 - Notes - If we note - the native parameters and - the new ones, then the gradient matrix is - . 
 - 
hasName(self)¶
- Test if the object is named. - Returns
- hasNamebool
- True if the name is not empty. 
 
 
 - 
hasVisibleName(self)¶
- Test if the object has a distinguishable name. - Returns
- hasVisibleNamebool
- True if the name is not empty and not the default one. 
 
 
 - 
inverse(self, inP)¶
- Convert to native parameters. - Parameters
- inPsequence of float
- The non-native parameters. 
 
- Returns
- outPPoint
- The native parameters. 
 
- outP
 
 - 
setName(self, name)¶
- Accessor to the object’s name. - Parameters
- namestr
- The name of the object. 
 
 
 - 
setShadowedId(self, id)¶
- Accessor to the object’s shadowed id. - Parameters
- idint
- Internal unique identifier. 
 
 
 - 
setValues(self, values)¶
- Accessor to the parameters values. - Parameters
- valuessequence of float
- List of parameters values. 
 
 
 - 
setVisibility(self, visible)¶
- Accessor to the object’s visibility state. - Parameters
- visiblebool
- Visibility flag. 
 
 
 
 OpenTURNS
      OpenTURNS