scipy 1.8.0 Pypi GitHub Homepage
Other Docs
Other ParametersParametersReturns
qmr(A, b, x0=None, tol=1e-05, maxiter=None, M1=None, M2=None, callback=None, atol=None)

Other Parameters

x0 : ndarray

Starting guess for the solution.

tol, atol : float, optional

Tolerances for convergence, norm(residual) <= max(tol*norm(b), atol) . The default for atol is 'legacy' , which emulates a different legacy behavior.

warning

The default value for :None:None:`atol` will be changed in a future release. For future compatibility, specify :None:None:`atol` explicitly.

maxiter : integer

Maximum number of iterations. Iteration will stop after maxiter steps even if the specified tolerance has not been achieved.

M1 : {sparse matrix, ndarray, LinearOperator}

Left preconditioner for A.

M2 : {sparse matrix, ndarray, LinearOperator}

Right preconditioner for A. Used together with the left preconditioner M1. The matrix M1@A@M2 should have better conditioned than A alone.

callback : function

User-supplied function to call after each iteration. It is called as callback(xk), where xk is the current solution vector.

Parameters

A : {sparse matrix, ndarray, LinearOperator}

The real-valued N-by-N matrix of the linear system. Alternatively, A can be a linear operator which can produce Ax and A^T x using, e.g., scipy.sparse.linalg.LinearOperator .

b : ndarray

Right hand side of the linear system. Has shape (N,) or (N,1).

Returns

x : ndarray

The converged solution.

info : integer

Use Quasi-Minimal Residual iteration to solve Ax = b .

See Also

LinearOperator

Examples

>>> from scipy.sparse import csc_matrix
... from scipy.sparse.linalg import qmr
... A = csc_matrix([[3, 2, 0], [1, -1, 0], [0, 5, 1]], dtype=float)
... b = np.array([2, 4, -1], dtype=float)
... x, exitCode = qmr(A, b)
... print(exitCode) # 0 indicates successful convergence 0
>>> np.allclose(A.dot(x), b)
True
See :

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


GitHub : /scipy/sparse/linalg/_isolve/iterative.py#664
type: <class 'function'>
Commit: