Click or drag to resize

StableDistributionBaseOneMinusExp Method

Calculates 1-Exp(x) with more accuracy around x=0.

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

Parameters

x  Double
Function argument

Return Value

Double
1-Exp(x)
Remarks

If |x| is smaller than OneMinusExp_SmallBound, the series expansion of (1-Exp(x)) is used for calculation.

If |x| is greater than or equal to OneMinusExp_SmallBound, the standard way of evaluation is used.

See Also