GMRES迭代模板程序我要分享

gmres Iterative template routine

matlab 模板 程序 GMRES 迭代

关注次数: 243

下载次数: 1

文件大小: 9.11 kB

代码分类: 其他

开发平台: matlab

下载需要积分: 2积分

版权声明:如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

代码描述

中文说明:介绍了此算法的详细信息"模板解线性方程组: 构建基块的迭代方法",Barrett, Berry, Chan, Demmel, Donato, Dongarra,Eijkhout、Pozo, Romine, and van der Vorst, SIAM Publications,暹罗出版物1993.(ftp netlib2.cs.utk.edu ; cd linalg ; 得到 templates.ps)。[旗帜,错误,iter x] = gmres (A,x、 b、 restrt、 max_it、tol)gmres.m 解决了线性系统 Ax = b重新启动使用广义最小残差 (GMRESm) 方法。


English Description:

Details of this algorithm are described in "Templates for the  Solution of Linear Systems: Building Blocks for Iterative  Methods", Barrett, Berry, Chan, Demmel, Donato, Dongarra,  Eijkhout, Pozo, Romine, and van der Vorst, SIAM Publications,  1993. (ftp netlib2.cs.utk.edu; cd linalg; get templates.ps).  [x, error, iter, flag] = gmres( A, x, b,restrt, max_it, tol )  gmres.m solves the linear system Ax=b  using the Generalized Minimal residual ( GMRESm ) method with restarts . 


代码预览