scijit.optimizeΒΆ
scipy.optimize equivalents callable from inside numba.@njit code: MINPACK
roots, L-BFGS-B / SLSQP / COBYLA / PRIMA minimizers, scalar root-finders and
minimizers, and the global optimizers. Each name below links to a page generated
from its docstring: parameters, returns, a runnable @njit example, and, where
it applies, the ways it differs from scipy.
Minimize a scalar function of one or more variables. |
|
Scalar minimizer dispatcher. |
|
Find a root of a vector function. |
|
Scalar root-finder dispatcher. |
|
Find the roots of a system of nonlinear equations. |
|
Minimize the sum of squares of a set of residuals. |
|
Nonlinear least-squares curve fit. |
|
Non-negative least squares. |
|
Bounded-variable linear least squares. |
|
Solve the linear sum assignment problem. |
|
Minimize a function using the Nelder-Mead simplex algorithm. |
|
Minimize a function using Powell's direction-set method. |
|
Minimize a function with the Polak-Ribiere+ conjugate gradient method. |
|
Minimize a function with the quasi-Newton BFGS method. |
|
Minimize a function of many variables subject to simple bounds. |
|
Minimize a function subject to equality, inequality and bound constraints. |
|
Minimize a function subject to nonlinear inequality constraints. |
|
Bisection root-finder. |
|
Brent's method with inverse quadratic interpolation. |
|
Brent's method with hyperbolic extrapolation. |
|
Ridders' method. |
|
TOMS Algorithm 748 (Alefeld, Potra and Shi). |
|
Newton-Raphson, secant and Halley root-finder. |
|
Scalar fixed point of |
|
Bracket a minimum of |
|
Golden-section minimizer. |
|
Brent's parabolic-interpolation minimizer. |
|
Bounded scalar minimizer on a fixed interval. |
|
Brute-force grid search over a full Cartesian grid. |
|
Basin-hopping global optimization by random restarts. |
|
Differential evolution, a population-based stochastic optimizer. |
|
The inverse-Hessian estimate a minimize result carries. |
|
Result of a scalar root find. |
|
The result minimize, root and the other solvers return. |
|
Warning category for recoverable problems during optimization. |