lsqr_f90.readme

来自「比较经典的求解线性方程的方法 原理是C.C. Paige and M.A. S」· README 代码 · 共 40 行

README
40
字号
lsqr_f90.READMEThe software for LSQR (f90 version) is provided by SOL, Stanford Universityunder the terms of the OSI Common Public License (CPL):http://www.opensource.org/licenses/cpl1.0.php07 Sep 2007: First f90 files provided by Eric Badel <badel@nancy.inra.fr>.16 Sep 2007: More f90 features added by MAS.             "implicit none" everywhere.             data statements eliminated.             But we're still stuck with subroutine Aprod, the f77 method             for forming matrix-vector products A*x, A'*y.16 Sep 2007: First set of f90 files available for download from SOL.Please send comments to Michael Saunders, SOL, Stanford University                        saunders@stanford.edu  650-723-1875-----------------------------------------------------------------------------The f90 version of LSQR involves the following files:   lsqr.f90   lsqrblas.f90   (not needed if you have BLAS-1)   lsqrcheck.f90   lsqrtest.f90   LSQR.txt       (example output file from an Intel Xeon system                   compiled with g95 on Linux Redhat 9)To compile the code and run the test program on Linux or Unix,proceed as follows:   g95 -o lsqrtest lsqr.f90 lsqrcheck.f90 lsqrtest.f90 lsqrblas.f90   ./lsqrtest   grep appears LSQR.txt"LSQR  appears to be successful" should occur 18 times."LSQR  appears to have failed" might occur for the mostill-conditioned problem, but this is not cause for alarmif ||A'r|| is very small (~= 1e-12).

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?