Rev 22085 | Blame | Last modification | View Log | Download | RSS feed
\name{constrOptim}\alias{constrOptim}\title{Linearly constrained optimisation}\description{Minimise a function subject to linear inequality constraints using anadaptive barrier algorithm.}\usage{constrOptim(theta, f, grad, ui, ci, mu = 1e-04, control = list(),method = if(is.null(grad)) "Nelder-Mead" else "BFGS",outer.iterations = 100, outer.eps = 1e-05, \dots)}\arguments{\item{theta}{Starting value: must be in the feasible region.}\item{f}{Function to minimise.}\item{grad}{Gradient of \code{f}.}\item{ui}{Constraints (see below).}\item{ci}{Constraints (see below).}\item{mu}{(Small) tuning parameter.}\item{control}{Passed to \code{\link{optim}}.}\item{method}{Passed to \code{\link{optim}}.}\item{outer.iterations}{Iterations of the barrier algorithm.}\item{outer.eps}{Criterion for relative convergence of the barrieralgorithm.}\item{\dots}{ Other arguments passed to \code{\link{optim}} }}\details{The feasible region is defined by \code{ui \%*\% theta - ci >= 0}. Thestarting value must be in the interior of the feasible region, but theminimum may be on the boundary.A logarithmic barrier is added to enforce the constraints and then\code{\link{optim}} is called. The barrier function is chosen so thatthe objective function should decrease at each outer iteration. Minimain the interior of the feasible region are typically found quitequickly, but a substantial number of outer iterations may be neededfor a minimum on the boundary.The tuning parameter \code{mu} multiplies the barrier term. Its precisevalue is often relatively unimportant. As \code{mu} increases theaugmented objective function becomes closer to the original objectivefunction but also less smooth near the boundary of the feasibleregion.Any \code{optim} method that permits infinite values for the objectivefunction may be used (currently all but "L-BFGS-B"). The gradientfunction must be supplied except with \code{method="Nelder-Mead"}.As with \code{optim}, the default is to minimise and maximisation canbe performed by setting \code{control$fnscale} to a negative value.}\value{As for \code{\link{optim}}, but with two extra components:\code{barrier.value} giving the value of the barrier function at theoptimum and \code{outer.iterations} gives thenumber of outer iterations (calls to \code{optim})}\references{K. Lange \emph{Numerical Analysis for Statisticians.} Springer2001, p185ff}\seealso{\code{\link{optim}}, especially \code{method="L-BGFS-B"} whichdoes box-constrained optimisation.}\examples{## from optimfr <- function(x) { ## Rosenbrock Banana functionx1 <- 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))}optim(c(-1.2,1), fr, grr)#Box-constraint, optimum on the boundaryconstrOptim(c(-1.2,0.9), fr, grr, ui=rbind(c(-1,0),c(0,-1)), ci=c(-1,-1))# x<=0.9, y-x>0.1constrOptim(c(.5,0), fr, grr, ui=rbind(c(-1,0),c(1,-1)), ci=c(-0.9,0.1))## Solves linear and quadratic programming problems## but needs a feasible starting value## from example(solve.QP) in 'quadprog'# no derivativefQP <- function(b) {-sum(c(0,5,0)*b)+0.5*sum(b*b)}Amat <- matrix(c(-4,-3,0,2,1,0,0,-2,1),3,3)bvec <- c(-8,2,0)constrOptim(c(2,-1,-1), fQP, NULL, ui=t(Amat),ci=bvec)# derivativegQP <- function(b) {-c(0,5,0)+b}constrOptim(c(2,-1,-1), fQP, gQP, ui=t(Amat), ci=bvec)## Now with maximisation instead of minimisationhQP <- function(b) {sum(c(0,5,0)*b)-0.5*sum(b*b)}constrOptim(c(2,-1,-1), hQP, NULL, ui=t(Amat), ci=bvec,control=list(fnscale=-1))}\keyword{optimize}