NAG FL Interface
e04rmf (handle_​set_​nlnls)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

e04rmf is a part of the NAG optimization modelling suite and declares the objective function of the problem as a sum of squares (for nonlinear least squares problems) with the given number of residuals and, optionally, the sparsity structure of their first derivatives.

2 Specification

Fortran Interface
Subroutine e04rmf ( handle, nres, isparse, nnzrd, irowrd, icolrd, ifail)
Integer, Intent (In) :: nres, isparse, nnzrd, irowrd(nnzrd), icolrd(nnzrd)
Integer, Intent (Inout) :: ifail
Type (c_ptr), Intent (In) :: handle
C Header Interface
#include <nag.h>
void  e04rmf_ (void **handle, const Integer *nres, const Integer *isparse, const Integer *nnzrd, const Integer irowrd[], const Integer icolrd[], Integer *ifail)
The routine may be called by the names e04rmf or nagf_opt_handle_set_nlnls.

3 Description

After the handle has been initialized (e.g., e04raf has been called), e04rmf may be used to declare the objective function of the optimization problem as a sum of squares. If the objective function has already been defined, it will be overwritten. It will typically be used in data fitting or calibration problems of the form
minimize xn f(x)= j=1 mr rj (x) 2    subject to lxxux ,     
where x is an n-dimensional variable vector and rj(x) are nonlinear residuals (see Section 2.2.3 in the E04 Chapter Introduction). The values of the residuals, and possibly their derivatives, will be communicated to the solver by a user-supplied function. e04rmf also allows the structured first derivative matrix
[ rj(x) xi ] i=1,,n , ​ j=1,,mr  
to be declared as being dense or sparse. If declared as sparse, its sparsity structure must be specified by e04rmf. If e04rmf is called with mr=0, any existing objective function is removed, no new one is added and the problem will be solved as a feasible point problem. Note that it is possible to temporarily disable and enable individual residuals in the model by e04tcf and e04tbf, respectively.
See Section 3.1 in the E04 Chapter Introduction for more details about the NAG optimization modelling suite.

4 References

None.

5 Arguments

1: handle Type (c_ptr) Input
On entry: the handle to the problem. It needs to be initialized (e.g., by e04raf) and must not be changed between calls to the NAG optimization modelling suite.
2: nres Integer Input
On entry: mr, the number of residuals in the objective function.
If nres=0, no objective function will be defined and irowrd and icolrd will not be referenced.
Constraint: nres0.
3: isparse Integer Input
On entry: is a flag indicating if the nonzero structure of the first derivative matrix is dense or sparse.
isparse=0
The first derivative matrix is considered dense and irowrd and icolrd will not be referenced. The ordering is assumed to be column-wise, namely the routine will behave as if nnzrd=n×mr and the vectors irowrd and icolrd filled as:
  • irowrd=(1,2,,n,1,2,,n,,1,2,,n);
  • icolrd=(1,1,,1,2,2,,2,,mr,mr,,mr).
isparse=1
The sparsity structure of the first derivative matrix will be supplied by nnzrd, irowrd and icolrd.
Constraint: isparse=0 or 1.
4: nnzrd Integer Input
On entry: the number of nonzeros in the first derivative matrix.
Constraint: if isparse=1 and nres>0, nnzrd>0.
5: irowrd(nnzrd) Integer array Input
6: icolrd(nnzrd) Integer array Input
On entry: arrays irowrd and icolrd store the sparsity structure (pattern) of the first derivative matrix as nnzrd nonzeros in coordinate storage (CS) format (see Section 2.1.1 in the F11 Chapter Introduction). The matrix has dimensions n×mr. irowrd specifies one-based row indices and icolrd specifies one-based column indices. No particular order of elements is expected, but elements should not repeat and the same order should be used when the first derivative matrix is evaluated for the solver.
Constraints:
  • 1irowrd(l)n, for l=1,2,,nnzrd;
  • 1icolrd(l)nres, for l=1,2,,nnzrd.
7: ifail Integer Input/Output
On entry: ifail must be set to 0, -1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of -1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value -1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value -1 is recommended. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6 Error Indicators and Warnings

If on entry ifail=0 or -1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
The supplied handle does not define a valid handle to the data structure for the NAG optimization modelling suite. It has not been properly initialized or it has been corrupted.
ifail=2
The problem cannot be modified right now, the solver is running.
ifail=6
On entry, isparse=value.
Constraint: isparse=0 or 1.
On entry, nnzrd=value.
Constraint: nnzrd>0.
On entry, nres=value.
Constraint: nres0.
ifail=8
On entry, i=value, icolrd(i)=value and nres=value.
Constraint: 1icolrd(i)nres.
On entry, i=value, irowrd(i)=value and n=value.
Constraint: 1irowrd(i)n.
On entry, more than one element of first derivative matrix has row index value and column index value.
Constraint: each element of first derivative matrix must have a unique row and column index.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

Not applicable.

8 Parallelism and Performance

e04rmf is not threaded in any implementation.

9 Further Comments

9.1 Internal Changes

Internal changes have been made to this routine as follows:
For details of all known issues which have been reported for the NAG Library please refer to the Known Issues.

10 Example

In this example, we demonstrate how to declare a least squares problem through e04rmf and solve it with e04fff on a very simple example. Here n=2, mr=3 and the residuals are computed by:
r1(x) = x(1)+ x(2)- 0.9 r2(x) = 2x(1)+ x(2)- 1.9 r3(x) = 3x(1)+ x(2)- 3.0  
The expected result is:
x=(0.95,0.10)  
with an objective value of 0.015.
See also the examples in Section 10 in e04fff and e04kff.

10.1 Program Text

Program Text (e04rmfe.f90)

10.2 Program Data

None.

10.3 Program Results

Program Results (e04rmfe.r)