StableDistributionFellerPDFforPositiveX Method |
Calculates the probability density using either series expansion for small or large arguments, or an integration
in the intermediate range.
Namespace: Altaxo.Calc.ProbabilityAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static double PDFforPositiveX(
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
- The gamma value.
- aga Double
- For alpha <=1: This is either (alpha-gamma)/alpha for gamma >=0, or (alpha+gamma)/alpha for gamma < 1.
For alpha >1, this is either (alpha-gamma) for gamma > (alpha-1), or (2-alpha+gamma) for gamma < (alpha-1).
- tempStorage Object
- Object that can be used to speed up subsequent calculations of the function. At first use, provide an object initialized with and then provide this object in subsequent calls of this function.
- precision Double
- Relative precision goal.
Return Value
DoubleThe probability density value for a positive argument.
See Also