You must supply funct1 to calculate the value of the function Fx at any point x. It should be tested separately before being used with e04jy (see the e04).

Syntax

C#
public delegate void E04JY_FUNCT1(
	int n,
	double[] xc,
	out double fc
)
Visual Basic
Public Delegate Sub E04JY_FUNCT1 ( _
	n As Integer, _
	xc As Double(), _
	<OutAttribute> ByRef fc As Double _
)
Visual C++
public delegate void E04JY_FUNCT1(
	int n, 
	array<double>^ xc, 
	[OutAttribute] double% fc
)
F#
type E04JY_FUNCT1 = 
    delegate of 
        n : int * 
        xc : float[] * 
        fc : float byref -> unit

Parameters

n
Type: System..::..Int32
On entry: the number n of variables.
xc
Type: array<System..::..Double>[]()[][]
On entry: the point x at which the function value is required.
fc
Type: System..::..Double%
On exit: the value of the function F at the current point x.

See Also