用幂法求矩阵的特征值,求出来的是矩阵最大的特征和对应的特征向量。-method for using the power of the matrix eigenvalue, seeking the Matrix is the biggest character and the corresponding eigenvector. 下载
|
使用反冥法算特征值和特征向量的算法。-use of anti-counting method offerings eigenvalues and eigenvectors of the algorithm. 下载
|
数学分析,高等代数中矩阵特征值和特征向量的求解(C描述)-mathematical analysis, advanced algebra Matrix eigenvalues and eigenvectors of the Solution (C Description) 下载
|
利用C语言 用矩阵迭代法求矩阵的特征值和特征向量-C language matrix iterative method for matrix eigenvalue and eigenvector 下载
|
矩阵计算的类苦,包括矩阵乘法,求逆矩阵求特征值和特征向量等-Matrix Calculation, including Matrix multiplization,etc. 下载
|
通过毫司何尔德变换法对矩阵特征值和特征向量的计算与数值模拟。-through cents Secretary Dr Eid transform the eigenvalues and eigenvectors of calculation and simulation. 下载
|
计算特征值和特征向量的幂法和反幂法以及计算矩阵的minres 算法的matlab程序-calculated eigenvalues and eigenvectors of power and anti-power-law and calculate the matrix algorithm mat minres lab procedures 下载
|
特征值和特征向量的计算,每种算法都用c++以函数形式实现- The characteristic value and the characteristic vector computation, each algorithm all uses c to realize by the function form 下载
|
矩阵的最大特征值的幂法. 对于工程计算而言,矩阵的特征值和特征向量都是相当重要和常见的数据,这里给出的幂法是一种常见的求解方法,用的是迭代的思想。 符号说明: 1A为待求的矩阵, 2Uk,Vk为迭代用的列向量。 3最后的最大特征值maxLamda由最后一次的max(Uk)-----求Uk中的绝对值最大的元素的绝对值.所决定。 而maxLamda所对应的特征向量由最后一次迭代的Vk所决定. 主要的想法就是先选一个不为0的初始向量U0!=0,然后按下面的式子迭代。 -matrix eigenvalue of the largest power France. For engineering calculation, Matrix eigenvalues and eigenvectors are very important and common data, here is the power law is a common solution, using the iterative thinking. Symbol : 1A of the question for the matrix, 2Uk, Vk iteration of the column vector. The final three largest eigenvalue maxLamda from last max (uk Hoffmann for the uk the largest absolute value of the absolute value of the element. by decision. While maxLamda corresponding eigenvectors from the last iteration of Vk decision. The main idea was first choice not one of the initial vector 0 U0! = 0, then by the following formula iteration. 下载
|
幂法求矩阵的特征值和特征向量 算法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;否则,输出错误信息,停机 - 下载
|