Auxiliary for use as a delegate parameter
Syntax
C# |
---|
public static void e04jcp( int n, int nf, double[] x, double f, double rho, out int inform ) |
Visual Basic |
---|
Public Shared Sub e04jcp ( _ n As Integer, _ nf As Integer, _ x As Double(), _ f As Double, _ rho As Double, _ <OutAttribute> ByRef inform As Integer _ ) |
Visual C++ |
---|
public: static void e04jcp( int n, int nf, array<double>^ x, double f, double rho, [OutAttribute] int% inform ) |
F# |
---|
static member e04jcp : n : int * nf : int * x : float[] * f : float * rho : float * inform : int byref -> unit |
Parameters
- n
- Type: System..::..Int32On entry: , the numbers of variables.
- nf
- Type: System..::..Int32On entry: the cumulative number of calls made to _objfun.
- x
- Type: array<System..::..Double>[]()[][]An array of size [n]On entry: an estimate of the position of the minimum. If any component is out-of-bounds it is replaced internally by the bound it violates.On exit: the lowest point found during the calculations. Thus, if on exit, x is the position of the minimum.
- f
- Type: System..::..DoubleOn entry: the value of _objfun at x.
- rho
- Type: System..::..DoubleOn entry: a lower bound on the current trust-region radius.
- inform
- Type: System..::..Int32%On exit: must be set to a value describing the action to be taken by the solver on return from _monfun. Specifically, if the value is negative the solution of the current problem will terminate immediately; otherwise, computations will continue.On exit: must be set to a value describing the action to be taken by the solver on return from _monfun. Specifically, if the value is negative the solution of the current problem will terminate immediately; otherwise, computations will continue.
Description
Auxiliary for use as a delegate parameter
References
None.
Error Indicators and Warnings
Accuracy
Not applicable.
Further Comments
None.
Example
None.