Auxiliary for use as a delegate parameter

Syntax

C#
public static void e04cbk(
	double fmin,
	double fmax,
	double[,] sim,
	int n,
	int ncall,
	double serror,
	double vratio
)
Visual Basic
Public Shared Sub e04cbk ( _
	fmin As Double, _
	fmax As Double, _
	sim As Double(,), _
	n As Integer, _
	ncall As Integer, _
	serror As Double, _
	vratio As Double _
)
Visual C++
public:
static void e04cbk(
	double fmin, 
	double fmax, 
	array<double,2>^ sim, 
	int n, 
	int ncall, 
	double serror, 
	double vratio
)
F#
static member e04cbk : 
        fmin : float * 
        fmax : float * 
        sim : float[,] * 
        n : int * 
        ncall : int * 
        serror : float * 
        vratio : float -> unit 

Parameters

fmin
Type: System..::..Double
On entry: the smallest function value in the current simplex.
fmax
Type: System..::..Double
On entry: the largest function value in the current simplex.
sim
Type: array<System..::..Double,2>[,](,)[,][,]
An array of size [n+1, n]
On entry: the n+1 position vectors of the current simplex.
n
Type: System..::..Int32
On entry: n, the number of variables.
ncall
Type: System..::..Int32
On entry: the number of times that _funct has been called so far.
serror
Type: System..::..Double
On entry: the current value of the standard deviation in function values used in termination test eqn1.
vratio
Type: System..::..Double
On entry: the current value of the linearized volume ratio used in termination test eqn2.

Description

Auxiliary for use as a delegate parameter

References

None.

Error Indicators and Warnings

None.

Accuracy

Not applicable.

Further Comments

None.

Example

None.

See Also