Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.3 - Português

Change language to:
English - Français - 日本語 -

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Ajuda Scilab >> Matrizes Esparsas > qmr

qmr

quasi minimal resiqual method with preconditioning

Calling Sequence

[x,flag,err,iter,res] = qmr(A,b,x0,M1,M1p,M2,M2p,maxi,tol)

Arguments

A

matrix of size n-by-n or function returning A*x

b

right hand side vector

x0

initial guess vector (default: zeros(n,1))

M1

left preconditioner: matrix or function returning M1*x (In the first case, default: eye(n,n))

M1p

must only be provided when M1 is a function. In this case M1p is the function which returns M1'*x

M2

right preconditioner: matrix or function returning M2*x (In the first case, default: eye(n,n))

M2p

must only be provided when M2 is a function. In this case M2p is the function which returns M2'*x

maxi

maximum number of iterations (default: n)

tol

error tolerance (default: 1000*%eps)

x

solution vector

flag
0 =

gmres converged to the desired tolerance within maxi iterations

1 =

no convergence given maxi

res

residual vector

err

final residual norm

iter

number of iterations performed

Description

Solves the linear system Ax=b using the Quasi Minimal Residual Method with preconditioning.

See Also

  • gmres — Generalized Minimum RESidual method

Authors

SAGE Group, IRISA 2005

<< pcg Matrizes Esparsas Interfaces com UMFPACK (sparse) >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Oct 05 12:11:45 CEST 2011