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).
Use MINimum RESidual iteration to solve Ax=b
MINRES minimizes norm(A*x - b) for a real symmetric matrix A. Unlike the Conjugate Gradient method, A can be indefinite or singular.
If shift != 0 then the method solves (A - shift*I)x = b
Parameters : | A : {sparse matrix, dense matrix, LinearOperator}
b : {array, matrix}
|
---|---|
Returns : | x : {array, matrix}
info : integer
|
Other Parameters: | |
x0 : {array, matrix}
tol : float
maxiter : integer
M : {sparse matrix, dense matrix, LinearOperator}
callback : function
xtype : {‘f’,’d’,’F’,’D’}
|
Notes
THIS FUNCTION IS EXPERIMENTAL AND SUBJECT TO CHANGE!
References