vecfun must evaluate the integrand at a specified set of points.
Syntax
C# |
---|
public delegate void D01GD_VECFUN( int ndim, double[,] x, double[] fv, int m ) |
Visual Basic |
---|
Public Delegate Sub D01GD_VECFUN ( _ ndim As Integer, _ x As Double(,), _ fv As Double(), _ m As Integer _ ) |
Visual C++ |
---|
public delegate void D01GD_VECFUN( int ndim, array<double,2>^ x, array<double>^ fv, int m ) |
F# |
---|
type D01GD_VECFUN = delegate of ndim : int * x : float[,] * fv : float[] * m : int -> unit |
Parameters
- ndim
- Type: System..::..Int32On entry: , the number of dimensions of the integral.
- x
- Type: array<System..::..Double,2>[,](,)[,][,]On entry: the coordinates of the points at which the integrand must be evaluated. contains the th coordinate of the th point.
- fv
- Type: array<System..::..Double>[]()[][]On exit: must contain the value of the integrand of the th point, i.e., , for .
- m
- Type: System..::..Int32On entry: the number of points at which the integrand is to be evaluated.