Click or drag to resize

StableDistributionS0Initialize Method

Initializes this distribution instance with the given parameters.

Namespace: Altaxo.Calc.Probability
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public void Initialize(
	double alpha,
	double beta,
	double abe,
	double sigma,
	double mu
)

Parameters

alpha  Double
Distribution parameter alpha (broadness exponent).
beta  Double
Distribution parameter beta (skew).
abe  Double
Parameter to specify beta with higher accuracy around -1 and 1. It is 1 - beta for beta >= 0 or 1 + beta for beta < 0.
sigma  Double
Scaling parameter (broadness of the distribution). Must be positive.
mu  Double
Location parameter of the distribution.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionThrown if any parameter is outside its valid range.
See Also