Click or drag to resize

StableDistributionFellerPDFAlphaBetween02And099 Method

Calculation of the PDF if alpha is inbetween 0.2 and 0.99. For small x (1E-8), the accuracy at alpha=0.2 is only 1E-7.

Namespace: Altaxo.Calc.Probability
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static double PDFAlphaBetween02And099(
	double x,
	double alpha,
	double gamma,
	double aga,
	ref Object?? tempStorage,
	double precision
)

Parameters

x  Double
The x value at which the probability density function is evaluated.
alpha  Double
The stability parameter in the interval from 0.2 to 0.99.
gamma  Double
The skewness parameter of the distribution.
aga  Double
Precomputed helper value derived from alpha and gamma.
tempStorage  Object
Temporary storage reused by the integral evaluation path.
precision  Double
Requested numerical precision for the integral evaluation.

Return Value

Double
The value of the probability density function.
See Also