Back to Scientific Computing (SciPy)
sp.optimize.minimize
Minimization of scalar function of one or more variables.
Syntax
sp.optimize.minimize(fun, x0, options?)
Description
Minimization of scalar function of one or more variables.
Parameters
| Name | Description |
|---|---|
| fun | - Objective function: (x: number[]) => number |
| x0 | - Initial guess |
| options(optional) | - Method, bounds, tolerances, etc. |
Returns
Promise<OptimizeResult>