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

Syntax

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

Parameters

ndim
Type: System..::..Int32
On entry: n, the number of dimensions of the integral.
x
Type: array<System..::..Double>[]()[][]
On entry: the coordinates of the point at which the integrand f must be evaluated. These coordinates are given in Cartesian or spherical polar form according to the value of icoord.

See Also