Click or drag to resize

StableDistributionS1PDF(Double, Double, Double, Double, Double, Double, Object, Double) Method

Calculates the probability density function of the stable distribution in S1 parametrization.

Namespace: Altaxo.Calc.Probability
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double PDF(
	double x,
	double alpha,
	double beta,
	double abe,
	double scale,
	double location,
	ref Object?? tempStorage,
	double precision
)

Parameters

x  Double
Argument.
alpha  Double
Characteristic exponent of the distribution, in the range (0,2].
beta  Double
Skewness parameter of the distribution, in the range [-1,1].
abe  Double
Parameter to specify beta with higher accuracy around -1 and 1. Is defined as 1-beta for beta>=0 or as 1+beta for beta<0.
scale  Double
Scaling parameter (broadness) of the distribution, >0.
location  Double
Location parameter of the distribution.
tempStorage  Object
Temporary storage. For the first call, provide null as parameter. For subsequent calls, you can provide the object returned in the first call to speed up calculation.
precision  Double
The required relative precision of calculation.

Return Value

Double
Probability density at x.
See Also