GumbelLambdaGamma

class GumbelLambdaGamma(*args)

Gumbel rate/location parametrization.

Parameters:
lambdafloat

Rate parameter \lambda > 0.

Default value is 0.0.

gammafloat

Location parameter.

Default value is 1.0.

See also

Gumbel

Notes

The native parameters (\beta, \gamma) are defined as follows:

\beta &= \frac{1}{\lambda} \\

The \gamma parameter is the same.

Examples

Create the parameters (\lambda, \gamma) of the Gumbel distribution:

>>> import openturns as ot
>>> parameters = ot.GumbelLambdaGamma(2.0, 0.5)

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

>>> print(parameters.evaluate())
[0.5,0.5]

Methods

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.

getName()

Accessor to the object's name.

getValues()

Accessor to the parameters values.

gradient()

Get the gradient.

hasName()

Test if the object is named.

inverse(inP)

Convert to native parameters.

setName(name)

Accessor to the object's name.

setValues(values)

Accessor to the parameters values.

__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.

getName()

Accessor to the object’s name.

Returns:
namestr

The name of the object.

getValues()

Accessor to the parameters values.

Returns:
valuesPoint

List of parameters values.

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.

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.

setValues(values)

Accessor to the parameters values.

Parameters:
valuessequence of float

List of parameters values.