f must return the value of the integrand f at a given point.

Syntax

C#
public delegate double D01AJ_F(
	double x
)
Visual Basic
Public Delegate Function D01AJ_F ( _
	x As Double _
) As Double
Visual C++
public delegate double D01AJ_F(
	double x
)
F#
type D01AJ_F = 
    delegate of 
        x : float -> float

Parameters

x
Type: System..::..Double
On entry: the point at which the integrand f must be evaluated.

See Also