Bases: astropy.modeling.optimizers.Optimization
Sequential Least Squares Programming optimization algorithm.
The algorithm is described in [R7]. It supports tied and fixed parameters, as well as bounded constraints. Uses scipy.optimize.fmin_slsqp.
References
[R7] | (1, 2) http://www.netlib.org/toms/733 |
Attributes Summary
supported_constraints | list() -> new empty list |
Methods Summary
__call__(objfunc, initval, fargs, **kwargs) | Run the solver. |
Attributes Documentation
Methods Documentation
Run the solver.
Parameters: | objfunc : callable
initval : iterable
fargs : tuple
kwargs : dict
|
---|