- 1、本文档共12页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
matlab读书笔记(matlab读书笔记)
matlab读书笔记(matlab读书笔记)
Matrix factorization
1.LU decomposition, the matrix X is decomposed into the product of the lower triangular matrix or its deformation form L and upper triangular matrix U. X=L*U
Format: [L, U] =lu (X).
2.QR decomposition, the matrix X is decomposed into an orthogonal matrix Q and the product of the upper triangular matrix R. X=Q*R
Format: [Q, R]=qr (X)
3.schur (Shure) decomposition, the matrix X is decomposed into diagonal array T (T diagonal element for the eigenvalues of X) and orthogonal matrix U, and meet X=U*T*U
Format: [U, T]=schur (X)
4. eigenvalue decomposition, X is decomposed into eigenvector V and eigenvalue diagonal matrix D, which satisfies X*V=V*D.
Format: [V, D]=eig (X)
Matrix special operation
Length of 1. matrix
Format: [m, n]=size (X) priority (comparison, yes, or no)
2. dimension of matrix, dimension of reshape function. (in MATLAB, the matrix is stored as columns)
Format: B=reshape (X, m, n)
Comparison relation of matrices
Comparison of the relationship matrix is the corresponding elements of two dimensional matrix for the comparison of two matrices corresponding to elements,
If the relationship is satisfied, place 1 at that position, or 0. at that position
Matrix division, left division (\) right division (/). In general, x=a\b is the solution of equation a*x=b. And x=b/a is the solution of equation x*a=b.
Remainder of a matrix element
Function: REM
Format: C=rem (A, x) means that the matrix is divided by the remainder of the number x. If x=0, then REM (A, 0) =NaN is defined.
Multiplication and division of the array is two dimensional array multiplication [element] corresponding to the operator for the * / .
Polynomial and its operation
Matlab is stored in the form of polynomial vectors, the vector elements according to descending order assigned the value. N times polynomial is with a length of n+1
Represented by a vector.
1. polynomial addition and subtraction operations: MATLAB does not provide a special polynomial add
您可能关注的文档
- 04软件工程数据结构期末试卷2950(04 software engineering data structure final exam 2950).doc
- 04软件工程数据结构期末试卷3017(04 software engineering data structure final exam 3017).doc
- 04软件工程数据结构期末试卷3084(04 software engineering data structure final exam 3084).doc
- 04软件工程数据结构期末试卷3285(04 software engineering data structure final exam 3285).doc
- 05.2.运动的合成与分解(Synthesis and decomposition of 05.2. motion).doc
- 05.5.向心力 向心加速度(05.5. centripetal centripetal acceleration).doc
- 05年高考作文考点解读(05 year college entrance examination writing examination site interpretation).doc
- 07-08定向越野模拟试卷--基础(07-08 Orienteering simulation papers - the basis).doc
- 07.汽车制造工艺流程(7 automobile manufacturing process).doc
- 07年汽车技术大盘点(07 years automotive technology market).doc
文档评论(0)