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..::..Int32On entry: indicates the number of starting points.
- quas
- Type: array<System..::..Double,2>[,](,)[,][,]On entry: elements of quas will have been set to zero.On exit: must contain the starting points for the npts local minimizations, i.e., must contain the th component of the th starting point.
- n
- Type: System..::..Int32On entry: the number of variables.
- repeat
- Type: System..::..BooleanOn 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 .
Description
Auxiliary for use as a delegate parameter
References
None.
Error Indicators and Warnings
Accuracy
Not applicable.
Further Comments
None.
Example
None.