Click or drag to resize

StableDistributionBaseGetAbeFromBeta Method

Calculates the 'alternative beta' value abe from the skewness parameter beta. The value abe helps to specifiy beta with enhanced accuracy especially when |beta| is close to 1. Of course, this helper function is only intended to give a correct abe value for a given beta. But in order to specify beta with enhanced accuracy around |beta|=1, you should specify abe first, and then calculate beta from abe, which can be done with GetBetaFromAbe(Double, Boolean).

Namespace: Altaxo.Calc.Probability
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double GetAbeFromBeta(
	double beta
)

Parameters

beta  Double
The beta value.

Return Value

Double
If beta is >= 0, the return value is (1-beta). Else, if beta is <0, the return value is (1+beta).
See Also