文件名称:ssi
-
所属分类:
- 标签属性:
- 上传时间:2015-05-29
-
文件大小:5.77kb
-
已下载:0次
-
提 供 者:
-
相关连接:无下载说明:别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容来自于网络,使用问题请自行百度
krylov子空间法 krylov子空间方法的程序实现,用于解高阶矩阵-Matlab Codes for Krylov subspace methods
1. MINRES method by Paige and Saunders implementation
function [ x, istop, itn, rnorm, Arnorm, Anorm, Acond, ynorm ] = ...
minres( A, b, M, shift, show, check, itnlim, rtol )
[ x, istop, itn, rnorm, Arnorm, Anorm, Acond, ynorm ] = ...
minres( A, b, M, shift, show, check, itnlim, rtol )
minres solves the n x n system of linear equations Ax = b
or the n x n least squares problem min ||Ax- b||_2^2,
where A is a symmetric matrix (possibly indefinite or singular)
and b is a given vector. The dimension n is defined by length(b).
INPUT:
A may be a dense or sparse matrix (preferably sparse!)
or a function handle such that y = A(x) returns the product
y = A*x for any given n-vector x.
If M = [], preconditioning is not used. Otherwise,
M defines a positive-definite preconditioner M = C*C .
M may be a dense or sparse matrix (preferably sparse!)
or a function handle such that y = M(x) solves th
1. MINRES method by Paige and Saunders implementation
function [ x, istop, itn, rnorm, Arnorm, Anorm, Acond, ynorm ] = ...
minres( A, b, M, shift, show, check, itnlim, rtol )
[ x, istop, itn, rnorm, Arnorm, Anorm, Acond, ynorm ] = ...
minres( A, b, M, shift, show, check, itnlim, rtol )
minres solves the n x n system of linear equations Ax = b
or the n x n least squares problem min ||Ax- b||_2^2,
where A is a symmetric matrix (possibly indefinite or singular)
and b is a given vector. The dimension n is defined by length(b).
INPUT:
A may be a dense or sparse matrix (preferably sparse!)
or a function handle such that y = A(x) returns the product
y = A*x for any given n-vector x.
If M = [], preconditioning is not used. Otherwise,
M defines a positive-definite preconditioner M = C*C .
M may be a dense or sparse matrix (preferably sparse!)
or a function handle such that y = M(x) solves th
(系统自动生成,下载前可以参看下载内容)
下载文件列表
ssi.txt
本网站为编程资源及源代码搜集、介绍的搜索网站,版权归原作者所有! 粤ICP备11031372号
1999-2046 搜珍网 All Rights Reserved.