D01.D01PA_FUNCTN Delegate
関数リスト一覧   NagLibrary Namespaceへ  ライブラリイントロダクション  本ヘルプドキュメントのchm形式版

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

Syntax

C#
public delegate double D01PA_FUNCTN(
	int ndim,
	double[] x
)
Visual Basic (Declaration)
Public Delegate Function D01PA_FUNCTN ( _
	ndim As Integer, _
	x As Double() _
) As Double
Visual C++
public delegate double D01PA_FUNCTN(
	int ndim, 
	array<double>^ x
)
F#
type D01PA_FUNCTN = 
    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.

See Also