Learn R Programming

minqa (version 1.1.13)

uobyqa.control: Controls for an R interface to the uobyqa implementation of Powell

Description

The purpose of uobyqa.control is to set control parameters for the uobyqa Fortran code of M. J. D. Powell.

Usage

uobyqa.control(rhobeg = NA, rhoend = NA, iprint = 0, maxfun=10000)

Arguments

rhobeg
rhobeg and rhoend must be set to the initial and final values of a trust region radius, so both must be positive with 0 < rhoend < rhobeg. Typically rhobeg should be about one tenth of
rhoend
The smallest value of the trust region radius that is allowed. If not defined, then 1e-6 times the value set for rhobeg will be used. rhoend should indicate the accuracy that is required in the final values of the varia
iprint
The value of iprint should be set to 0, 1, 2 or 3, which controls the amount of printing. Specifically, there is no output if iprint=0 and there is output only at the return if iprint=1. Other
maxfun
The maximum number of function evaluations allowed.

Details

Functions fn must return a numeric value. The control argument is a list; see uobyqa.control for details.