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 (extended) Anderson mixing.
The Jacobian is formed by for a ‘best’ solution in the space spanned by last M vectors. As a result, only a MxM matrix inversions and MxN multiplications are required. [Ey]
Parameters : | F : function(x) -> f
x0 : array-like
alpha : float, optional
M : float, optional
w0 : 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 :
|
References
[Ey] | (1, 2)
|