搜索资源列表
PROGRAMMIFA
- 幂法求矩阵的特征值和特征向量 算法9.1 1. 输入矩阵A,初始向量X,误差限ε最大迭代次数N。 2. 置k=1,u=0。 3. 求xr=>λ,|xr|=max|xr|,i=1,….,n。 4. 计算 Y=X/λ,X=AY 5. 若|λ-u|〈ε,输出λ,X,停机;否则,转步骤6。 6. 若k<N,k+1=>k,λ=>u,转步骤3;否则,输出错误信息,停机
Matrix
- 实现矩阵的特征值特征向量的计算,矩阵乘法,线性方程组求解以及矩阵行列式计算。-Eigenvectors of the matrix eigenvalue computation, matrix multiplication, solving linear equations and matrix determinant calculation.
PCA
- (主成分分析)Jacobi法求解对称矩阵的特征值及特征向量-(PCA)Finding the eigenvalues and eigenvectors of symmetric matrices, applying Jacobi s method
Eigenvalues-and-eigenvectors
- 用数值分析方法求解实数矩阵特征值和特征向量——C语言代码,VS2012版-Using numerical analysis method to Solve real matrix eigenvalues and eigenvectors C language code, VS2012 version