WeibullMaxMuSigma

class WeibullMaxMuSigma(*args)

WeibullMax distribution parameters.

Parameters
mufloat

Mean.

sigmafloat

Standard deviation \sigma > 0.

gammafloat, optional

Shift parameter \gamma > \mu.

See also

WeibullMax

Notes

The native parameters \alpha and \beta are searched such as:

\begin{eqnarray*}
    \mu & = & \gamma - \beta \,\Gamma\left(1 + \frac{1}{\alpha}\right)\\
    \sigma^2 & = & \beta^2 \left( \Gamma \left( 1 + \frac{2}{\alpha} \right) -
                 \Gamma^2 \left( 1 + \frac{1}{\alpha} \right) \right)
\end{eqnarray*}

The \gamma parameter is the same.

Examples

Create the parameters (\mu, \sigma, \gamma) of the WeibullMax distribution:

>>> import openturns as ot
>>> parameters = ot.WeibullMaxMuSigma(1.3, 1.23, 3.1)

Convert parameters into the native parameters (\beta, \alpha, \gamma):

>>> print(parameters.evaluate())
[1.99222,1.48961,3.1]

Methods

__call__(inP)

Call self as a function.

evaluate()

Compute native parameters values.

getClassName()

Accessor to the object's name.

getDescription()

Get the description of the parameters.

getDistribution()

Build a distribution based on a set of native parameters.

getId()

Accessor to the object's id.

getName()

Accessor to the object's name.

getShadowedId()

Accessor to the object's shadowed id.

getValues()

Accessor to the parameters values.

getVisibility()

Accessor to the object's visibility state.

gradient()

Get the gradient.

hasName()

Test if the object is named.

hasVisibleName()

Test if the object has a distinguishable name.

inverse(inP)

Convert to native parameters.

setName(name)

Accessor to the object's name.

setShadowedId(id)

Accessor to the object's shadowed id.

setValues(values)

Accessor to the parameters values.

setVisibility(visible)

Accessor to the object's visibility state.

__init__(*args)
evaluate()

Compute native parameters values.

Returns
valuesPoint

The native parameter values.

getClassName()

Accessor to the object’s name.

Returns
class_namestr

The object class name (object.__class__.__name__).

getDescription()

Get the description of the parameters.

Returns
collectionDescription

List of parameters names.

getDistribution()

Build a distribution based on a set of native parameters.

Returns
distributionDistribution

Distribution built with the native parameters.

getId()

Accessor to the object’s id.

Returns
idint

Internal unique identifier.

getName()

Accessor to the object’s name.

Returns
namestr

The name of the object.

getShadowedId()

Accessor to the object’s shadowed id.

Returns
idint

Internal unique identifier.

getValues()

Accessor to the parameters values.

Returns
valuesPoint

List of parameters values.

getVisibility()

Accessor to the object’s visibility state.

Returns
visiblebool

Visibility flag.

gradient()

Get the gradient.

Returns
gradientMatrix

The gradient of the transformation of the native parameters into the new parameters.

Notes

If we note (p_1, \dots, p_q) the native parameters and (p'_1, \dots, p'_q) the new ones, then the gradient matrix is \left( \dfrac{\partial p'_i}{\partial p_j} \right)_{1 \leq i,j \leq  q}.

hasName()

Test if the object is named.

Returns
hasNamebool

True if the name is not empty.

hasVisibleName()

Test if the object has a distinguishable name.

Returns
hasVisibleNamebool

True if the name is not empty and not the default one.

inverse(inP)

Convert to native parameters.

Parameters
inPsequence of float

The non-native parameters.

Returns
outPPoint

The native parameters.

setName(name)

Accessor to the object’s name.

Parameters
namestr

The name of the object.

setShadowedId(id)

Accessor to the object’s shadowed id.

Parameters
idint

Internal unique identifier.

setValues(values)

Accessor to the parameters values.

Parameters
valuessequence of float

List of parameters values.

setVisibility(visible)

Accessor to the object’s visibility state.

Parameters
visiblebool

Visibility flag.