@hackage nonlinear-optimization0.3.9
Various iterative algorithms for optimization of nonlinear functions.
Categories
License
LicenseRef-GPL
Maintainer
Felipe A. Lessa <felipe.lessa@gmail.com>
Links
Versions
Installation
Tested Compilers
Dependencies (3)
Dependents (9)
@hackage/biohazard, @hackage/maxent, @hackage/nonlinear-optimization-ad, @hackage/acme-everything, @hackage/lp-diagrams, @hackage/statistics-dirichlet, Show all…
Package Flags
debug
(off by default)
Enable some debug statements.
This library implements numerical algorithms to optimize nonlinear functions. Optimization means that we try to find a minimum of the function. Currently all algorithms guarantee only that local minima will be found, not global ones.
Almost any continuosly differentiable function f : R^n -> R
may be optimized by this library. Any further restrictions
are listed in the modules that need them.
We use the vector package to represent vectors and
matrices, although it would be possible to use something like
hmatrix easily.
Currently only CG_DESCENT method is implemented.