UOBYQA

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

UOBYQA (Unconstrained Optimization BY Quadratic Approximation)[1][2][3] is a numerical optimization algorithm by Michael J. D. Powell. It is also the name of Powell's Fortran 77 implementation of the algorithm.

UOBYQA solves unconstrained optimization problems without using derivatives, which makes it a derivative-free algorithm. The algorithm is iterative, and exploits trust region technique. On each iteration, the algorithm establishes a quadratic model  Q_k by interpolating the objective function at  (n+1)(n+2)/2 points, and then minimizes  Q_k within a trust region.

After UOBYQA, Powell developed NEWUOA, which also solves unconstrained optimization problems without using derivatives. In general, NEWUOA is much more efficient than UOBYQA and is capable of solving much larger problems (with up to several hundreds of variables). A major difference between them is that NEWUOA constructs quadratic models by interpolating the objective function at much less than  (n+1)(n+2)/2 points ( 2n+1 by default[4]). For general usage, NEWUOA is recommended to replace UOBYQA.

The UOBYQA software is distributed under The GNU Lesser General Public License (LGPL).[3]

See also

References

  1. Lua error in package.lua at line 80: module 'strict' not found.
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. 3.0 3.1 Lua error in package.lua at line 80: module 'strict' not found.
  4. Lua error in package.lua at line 80: module 'strict' not found.

External links