Home About Documentation Install Newsline Links Feedback Appeal Guestbook
since 2007/10/24
The page is obsolete, we have moved to openopt.org
Least squares problems (LSP)
F0(x)2+F1(x)2+...+Fm(x)2 -> min,
x from Rn
subjected to
- Box - bound constraints
- lb <= x <= ub (some coords of lb and ub can be +/- inf)
- lb <= x <= ub (some coords of lb and ub can be +/- inf)
- General linear constraints
- A*x <= b
- Aeq*x = beq
- A*x <= b
- Non-linear constraints
- ci(x) <= 0, i = 0...I
- hj(x) = 0, j = 0...J
- ci(x) <= 0, i = 0...I
Note! Since OpenOpt v. 0.21 LSP has been renamed to NLLSP (Non-linear least squares problem)
OpenOpt LSP example >>>
LSP solvers
| Solver | License | Made by | Info |
| scipy_leastsq | BSD | Argonne national laboratory, Burton S. Garbow, Kenneth E. Hillstrom, Jorge J. more | Unconstrained problems only! "leastsq" is a scipy wrapper around MINPACK's lmdif algorithm |
| converter to nlp | Dmitrey | Example: r = p.solve('nlp:ralg'). See NLP page for list of available NLP solvers |
