Click or drag to resize

StableDistributionFellerPDF(Double, Double, Double, Double, Object, Double) Method

Calculates the probability density using either series expansion for small or large arguments, or an integration in the intermediate range.

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

Parameters

x  Double
The argument.
alpha  Double
Distribution parameter alpha.
gamma  Double
Distribution parameter gamma.
aga  Double
For alpha <=1: This is either (alpha-gamma)/alpha for gamma >=0, or (alpha+gamma)/alpha for gamma < 1.
tempStorage  Object
Temporary storage reused between calls.
precision  Double
Relative precision goal.

Return Value

Double
The probability density value.
See Also