This is documentation for an old release of SciPy (version 0.10.0). Read this page in the documentation of the latest stable release (version 1.15.1).
Find a root of a function, using a scalar Jacobian approximation.
Warning
This algorithm may be useful for specific problems, but whether it will work may depend strongly on the problem.
Parameters : | F : function(x) -> f
x0 : array-like
alpha : float, optional
iter : int, optional
verbose : bool, optional
maxiter : int, optional
f_tol : float, optional
f_rtol : float, optional
x_tol : float, optional
x_rtol : float, optional
tol_norm : function(vector) -> scalar, optional
line_search : {None, ‘armijo’ (default), ‘wolfe’}, optional
callback : function, optional
|
---|---|
Returns : | sol : array-like
|
Raises : | NoConvergence :
|