Click or drag to resize

StableDistributionS0CDF(Double, Double, Double, Double, Double, Double) Method

Gets the cumulative distribution function (CDF) for the specified scale and location.

Namespace: Altaxo.Calc.Probability
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static double CDF(
	double x,
	double alpha,
	double beta,
	double abe,
	double scale,
	double location
)

Parameters

x  Double
The value where the distribution function is evaluated.
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.
scale  Double
Scale parameter.
location  Double
Location parameter.

Return Value

Double
The cumulative probability P(X <= x).
See Also