g must return the value of the function g at a given point x.

Syntax

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

Parameters

x
Type: System..::..Double
On entry: the point at which the function g must be evaluated.

See Also