Click or drag to resize

StableDistributionS0Quantile(Double, Double, Double, Double, Object, Double) Method

Gets the quantile (inverse CDF) for the standardized S0 stable distribution.

Namespace: Altaxo.Calc.Probability
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static double Quantile(
	double p,
	double alpha,
	double beta,
	double abe,
	ref Object?? tempStorage,
	double precision
)

Parameters

p  Double
The probability in [0, 1].
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.
tempStorage  Object
Temporary storage that can be reused between calls.
precision  Double
Goal for the relative precision.

Return Value

Double
The value x such that CDF(x) = p, or NaN if no root was found.
See Also