Auxiliary for use as a delegate parameter

Syntax

C#
public static void e05ucz(
	int npts,
	double[,] quas,
	int n,
	bool repeat,
	double[] bl,
	double[] bu,
	ref int mode
)
Visual Basic
Public Shared Sub e05ucz ( _
	npts As Integer, _
	quas As Double(,), _
	n As Integer, _
	repeat As Boolean, _
	bl As Double(), _
	bu As Double(), _
	ByRef mode As Integer _
)
Visual C++
public:
static void e05ucz(
	int npts, 
	array<double,2>^ quas, 
	int n, 
	bool repeat, 
	array<double>^ bl, 
	array<double>^ bu, 
	int% mode
)
F#
static member e05ucz : 
        npts : int * 
        quas : float[,] * 
        n : int * 
        repeat : bool * 
        bl : float[] * 
        bu : float[] * 
        mode : int byref -> unit 

Parameters

npts
Type: System..::..Int32
On entry: indicates the number of starting points.
quas
Type: array<System..::..Double,2>[,](,)[,][,]
An array of size [n, npts]
On entry: elements of quas will have been set to zero.
On exit: quas[j-1,i-1] must contain the starting points for the npts local minimizations, i.e., quas[j-1,i-1] must contain the jth component of the ith starting point.
n
Type: System..::..Int32
On entry: the number of variables.
repeat
Type: System..::..Boolean
On entry: specifies whther a repeatable or non-repeatable sequence of points are to be generated.
bl
Type: array<System..::..Double>[]()[][]
An array of size [n]
On entry: the lower bounds on the variables. These may be used to ensure that the starting points generated in some sense ‘cover’ the region, but there is no requirement that a starting point be feasible.
bu
Type: array<System..::..Double>[]()[][]
An array of size [n]
On entry: the upper bounds on the variables. (See bl.)
mode
Type: System..::..Int32%
On entry: mode will contain 0.
On exit: if you set mode to a negative value then e05uc will terminate immediately with ifail=9. The error message, produced when ifail=0 or -1 on entry to e05uc, will contain this value of mode.

Description

Auxiliary for use as a delegate parameter

References

None.

Error Indicators and Warnings

ifail=-4000
Invalid dimension for array value
ifail=-8000
Negative dimension for array value
ifail=-6000
Invalid Parameters value

Accuracy

Not applicable.

Further Comments

None.

Example

None.

See Also