Click or drag to resize

StableDistributionS1CDF(Double, Double, Double, Object, Double) Method

Calculates the cumulative distribution function of the stable distribution in S1 parametrization.

Namespace: Altaxo.Calc.Probability
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double CDF(
	double x,
	double alpha,
	double beta,
	ref Object?? tempStorage,
	double precision
)

Parameters

x  Double
Argument.
alpha  Double
Characteristic exponent of the distribution, in the range (0,2].
beta  Double
Skewness parameter of the distribution, in the range [-1,1].
tempStorage  Object
Temporary storage. For the first call, provide null as parameter. For subsequent calls, you can provide the object returned in the first call to speed up calculation.
precision  Double
The required relative precision of calculation.

Return Value

Double
Cumulative distribution value at x.
See Also