Computes the Dawson integral.

Namespace: Meta.Numerics.Functions
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 2.1.0.0 (2.1.0.0)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public static double Dawson(
	double x
)
Public Shared Function Dawson ( _
	x As Double _
) As Double
public:
static double Dawson(
	double x
)
static member Dawson : 
        x : float -> float 

Parameters

x
Double
The argument.

Return Value

The value of F(x).

Remarks

The Dawson function is defined by the integral:

It is related to the error function for purely imaginary arguments.

See Also