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..::..DoubleOn entry: the smallest function value in the current simplex.
- fmax
- Type: System..::..DoubleOn entry: the largest function value in the current simplex.
- sim
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [, n]On entry: the position vectors of the current simplex.
- n
- Type: System..::..Int32On entry: , the number of variables.
- ncall
- Type: System..::..Int32On entry: the number of times that _funct has been called so far.
- serror
- Type: System..::..DoubleOn entry: the current value of the standard deviation in function values used in termination test eqn1.
- vratio
- Type: System..::..DoubleOn 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.