- 1、本文档共8页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
matlab 中的矩阵分解(国外英语资料)
matlab 中的矩阵分解(国外英语资料)
Matrix factorization in MATLAB
Matrix decomposition is the product of decomposing a matrix into several matrices according to certain principles. Common matrix decompositions include LU decomposition (triangular decomposition), QR decomposition (orthogonal transformation), Cholesky decomposition, and Schur decomposition, Hessenberg decomposition, singular decomposition, and so on.
(1) LU decomposition (triangular decomposition)
The LU decomposition of a matrix means that a matrix is expressed as a product of a commutative lower triangular matrix and an upper triangular matrix. Linear algebra has proved that LU decomposition can always be carried out as long as the square A is nonsingular (if the order is not equal to 0).
MATLAB provides the Lu function for LU decomposition of the matrix, the call format for:
[L, U]=lu (X): produces an upper triangular array U and a transform form of lower triangular array L (row exchange) to satisfy X=LU. Note that the matrix X here must be square.
[L, U, P]=lu (X): produces an upper triangular array U and a lower triangular matrix L, and a permutation matrix P, which satisfies PX=LU. Of course, the matrix X must also be square.
(a P is a m * n (0,1) matrix, such as m and P*P n =E, said P is a permutation matrix M * n.)
After the LU decomposition, the solution of the linear equations Ax=b (L\b) or x=U\ (L\Pb), which can greatly improve the speed of operation x=U\.
Example 7-2 decomposes the system of linear equations in example 7-1 by LU decomposition.
The commands are as follows:
A=[2,1, -5,1; 1; -5,0,7; 0,2,1; -1; 1,6; -1; -4];
B=[13, -9,6,0];
[L, U]=lu (A);
X=U\ (L\b)
Or using LU decomposition of the second formats, as follows:
[L, U, P]=lu (A);
X=U\ (L\P*b)
(2) QR decomposition (orthogonal transformation)
QR decomposition of the matrix X, is the decomposition of X into an orthogonal matrix Q and an upper triangular matrix R product form. QR decomposition can only be carried out by the opponents array. MATL
您可能关注的文档
- C++考试试卷(国外英语资料).doc
- C51单片机DS1302驱动程序(国外英语资料).doc
- C51单片机LCD1602驱动程序(国外英语资料).doc
- C51单片机LCD802驱动程序(国外英语资料).doc
- C15099并购基金实物与案例(下) 【90分】(国外英语资料).doc
- C 图书馆续(图书馆界面操作)(国外英语资料).doc
- cacls命令设置文件及其文件夹权限(国外英语资料).doc
- CAD 试题(国外英语资料).doc
- Cadence Allegro PCB Design v16.2破解方法及license(国外英语资料).doc
- C++第五章习题解答(国外英语资料).doc
文档评论(0)