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

Syntax

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

Parameters

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

See Also