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 Broyden’s second Jacobian approximation.
This method is also known as “Broyden’s bad method”.
Parameters : | F : function(x) -> f
x0 : array-like
alpha : float, optional
reduction_method : str or tuple, optional
max_rank : int, 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 :
|
Notes
This algorithm implements the inverse Jacobian Quasi-Newton update
corresponding to Broyden’s second method.
References
[vR] | B.A. van der Rotten, PhD thesis, “A limited memory Broyden method to solve high-dimensional systems of nonlinear equations”. Mathematisch Instituut, Universiteit Leiden, The Netherlands (2003). |