Click or drag to resize

ErrorFunctionDawson(Double, Boolean) Method

Dawson(x) evaluates Dawson's integral for a double precision real argument x.
C#
          2  / x   2
        -x   |    t
F(x) = e     |   e    dt
             |
             / 0

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double Dawson(
	double x,
	bool bDebug
)

Parameters

x  Double
The function argument
bDebug  Boolean
If true, an exception is thrown if serious errors occur. If false, NaN is returned on errors.

Return Value

Double
Dawson's integral for argument x.
See Also