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

Syntax

C#
public delegate double D01FC_FUNCTN(
	int ndim,
	double[] z
)
Visual Basic
Public Delegate Function D01FC_FUNCTN ( _
	ndim As Integer, _
	z As Double() _
) As Double
Visual C++
public delegate double D01FC_FUNCTN(
	int ndim, 
	array<double>^ z
)
F#
type D01FC_FUNCTN = 
    delegate of 
        ndim : int * 
        z : float[] -> float

Parameters

ndim
Type: System..::..Int32
On entry: n, the number of dimensions of the integral.
z
Type: array<System..::..Double>[]()[][]
On entry: the coordinates of the point at which the integrand f must be evaluated.

See Also