Auxiliary for use as a delegate parameter
Syntax
C# |
---|
public static void e04nsh( int ncolh, double[] x, double[] hx, int nstate ) |
Visual Basic |
---|
Public Shared Sub e04nsh ( _ ncolh As Integer, _ x As Double(), _ hx As Double(), _ nstate As Integer _ ) |
Visual C++ |
---|
public: static void e04nsh( int ncolh, array<double>^ x, array<double>^ hx, int nstate ) |
F# |
---|
static member e04nsh : ncolh : int * x : float[] * hx : float[] * nstate : int -> unit |
Parameters
- ncolh
- Type: System..::..Int32On entry: this is the same parameter _ncolh as supplied to e04ns.
- x
- Type: array<System..::..Double>[]()[][]An array of size [ncolh]On entry: an initial estimate of the solution.
- hx
- Type: array<System..::..Double>[]()[][]An array of size [ncolh]On exit: the product . If ncolh is less than the input parameter _n, is really the product in eqnqphx.
- nstate
- Type: System..::..Int32On entry: allows you to save computation time if certain data must be read or calculated only once. To preserve this data for a subsequent calculation place it in one of cuser, ruser or iuser .
- e04ns is calling _qphx for the first time.
- There is nothing special about the current call of _qphx.
- e04ns is calling _qphx for the last time. This parameter setting allows you to perform some additional computation on the final solution.
- The current is optimal.
- The problem appears to be infeasible.
- The problem appears to be unbounded.
- The iterations limit was reached.
Description
Auxiliary for use as a delegate parameter
References
None.
Error Indicators and Warnings
None.
Accuracy
Not applicable.
Further Comments
None.
Example
None.