StableDistributionBaseOneMinusExp Method |
Calculates 1-Exp(x) with more accuracy around x=0.
Namespace: Altaxo.Calc.ProbabilityAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static double OneMinusExp(
double x
)
Parameters
- x Double
- Function argument
Return Value
Double1-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