nlminb                 package:stats                 R Documentation

_O_p_t_i_m_i_z_a_t_i_o_n _u_s_i_n_g _P_O_R_T _r_o_u_t_i_n_e_s

_D_e_s_c_r_i_p_t_i_o_n:

     Unconstrained and constrained optimization using PORT routines.

_U_s_a_g_e:

     nlminb(start, objective, gradient = NULL, hessian = NULL, ...,
            scale = 1, control = list(), lower = -Inf, upper = Inf)

_A_r_g_u_m_e_n_t_s:

   start: numeric vector, initial values for the parameters to be
          optimized. 

objective: Function to be minimized.  Must return a scalar value
          (possibly NA/Inf).  The first argument to 'objective' is the
          vector of parameters to be optimized, whose initial values
          are supplied through 'start'.  Further arguments (fixed
          during the course of the optimization) to 'objective' may be
          specified as well (see '...'). 

gradient: Optional function that takes the same arguments as
          'objective' and evaluates the gradient of 'objective' at its
          first argument.  Must return a vector as long as 'start'. 

 hessian: Optional function that takes the same arguments as
          'objective' and evaluates the hessian of 'objective' at its
          first argument.  Must return a square matrix of order
          'length(start)'.  Only the lower triangle is used. 

     ...: Further arguments to be supplied to 'objective'.

   scale: See PORT documentation (or leave alone).

 control: A list of control parameters. See below for details.

lower, upper: vectors of lower and upper bounds, replicated to be as
          long as 'start'.  If unspecified, all parameters are assumed
          to be unconstrained. 

_D_e_t_a_i_l_s:

     Any names of 'start' are (as from R 2.8.1) passed on to
     'objective' and where applicable, 'gradient' and 'hessian'.  The
     parameter vector will be coerced to double.

     The PORT documentation is at <URL:
     http://netlib.bell-labs.com/cm/cs/cstr/153.pdf>.

_V_a_l_u_e:

     A list with components: 

     par: The best set of parameters found.

objective: The value of 'objective' corresponding to 'par'.

convergence: An integer code. '0' indicates successful convergence. 

 message: A character string giving any additional information returned
          by the optimizer, or 'NULL'. For details, see PORT
          documentation. 

iterations: Number of iterations performed.

evaluations: Number of objective function and gradient function
          evaluations

_C_o_n_t_r_o_l _p_a_r_a_m_e_t_e_r_s:

     Possible names in the 'control' list and their default values are:

     '_e_v_a_l._m_a_x' Maximum number of evaluations of the objective function
          allowed.  Defaults to 200.

     '_i_t_e_r._m_a_x' Maximum number of iterations allowed. Defaults to 150.

     '_t_r_a_c_e' The value of the objective function and the parameters is
          printed every trace'th iteration.  Defaults to 0 which
          indicates no trace information is to be printed.

     '_a_b_s._t_o_l' Absolute tolerance.  Defaults to '1e-20'.

     '_r_e_l._t_o_l' Relative tolerance.  Defaults to '1e-10'.

     '_x._t_o_l' X tolerance.  Defaults to '1.5e-8'.

     '_s_t_e_p._m_i_n' Minimum step size.  Defaults to '2.2e-14'.

_A_u_t_h_o_r(_s):

     (of R port) Douglas Bates and Deepayan Sarkar.

_R_e_f_e_r_e_n_c_e_s:

     <URL: http://netlib.bell-labs.com/netlib/port/>

_S_e_e _A_l_s_o:

     'optim' and 'nlm'.

     'optimize' for one-dimensional minimization and 'constrOptim' for
     constrained optimization.

_E_x_a_m_p_l_e_s:

     x <- rnbinom(100, mu = 10, size = 10)
     hdev <- function(par) {
         -sum(dnbinom(x, mu = par[1], size = par[2], log = TRUE))
     }
     nlminb(c(9, 12), hdev)
     nlminb(c(20, 20), hdev, lower = 0, upper = Inf)
     nlminb(c(20, 20), hdev, lower = 0.001, upper = Inf)

     ## slightly modified from the S-PLUS help page for nlminb
     # this example minimizes a sum of squares with known solution y
     sumsq <- function( x, y) {sum((x-y)^2)}
     y <- rep(1,5)
     x0 <- rnorm(length(y))
     nlminb(start = x0, sumsq, y = y)
     # now use bounds with a y that has some components outside the bounds
     y <- c( 0, 2, 0, -2, 0)
     nlminb(start = x0, sumsq, lower = -1, upper = 1, y = y)
     # try using the gradient
     sumsq.g <- function(x,y) 2*(x-y)
     nlminb(start = x0, sumsq, sumsq.g,
            lower = -1, upper = 1, y = y)
     # now use the hessian, too
     sumsq.h <- function(x,y) diag(2, nrow = length(x))
     nlminb(start = x0, sumsq, sumsq.g, sumsq.h,
            lower = -1, upper = 1, y = y)

     ## Rest lifted from optim help page

     fr <- function(x) {   ## Rosenbrock Banana function
         x1 <- x[1]
         x2 <- x[2]
         100 * (x2 - x1 * x1)^2 + (1 - x1)^2
     }
     grr <- function(x) { ## Gradient of 'fr'
         x1 <- x[1]
         x2 <- x[2]
         c(-400 * x1 * (x2 - x1 * x1) - 2 * (1 - x1),
            200 *      (x2 - x1 * x1))
     }
     nlminb(c(-1.2,1), fr)
     nlminb(c(-1.2,1), fr, grr)

     flb <- function(x)
         { p <- length(x); sum(c(1, rep(4, p-1)) * (x - c(1, x[-p])^2)^2) }
     ## 25-dimensional box constrained
     ## par[24] is *not* at boundary
     nlminb(rep(3, 25), flb, 
               lower=rep(2, 25),
               upper=rep(4, 25)) 

