Power iteration to find max/min eigenvalue/vector

バージョン 1.0.0.0 (1.57 KB) 作成者: Steven Huang
This is an c-mex function to find the max/min eigenvalue/vector.
ダウンロード: 6K
更新 2005/7/6

ライセンスがありません

This is the power iteration method to find the maximum eigenvalue/eigenvector a n-by-n matrix. This method doesn't require the matrix to be Hermitian for the maximum eigenvalue/eigenvecor.
But it DOES require the matrix to be Hermitian for the minimum eigenvalue/vector. This approximation method may be improved by setting a tolerance (currently the iteration is controlled by the number of iterations, MAX).

Example: c = [1 0.5 0.2;0.5 1 0.5; 0.2 0.5 1];
then [u,v] = mPowerEig(c,0) is to find the largest eigenvalue/vector
and [u,v] = mPowerEig(c,1) is to find the minimum eigenvalue/vector

Reference: G.H. Golub, C.F. Van Load, "Matrix Computation"

引用

Steven Huang (2024). Power iteration to find max/min eigenvalue/vector (https://www.mathworks.com/matlabcentral/fileexchange/7978-power-iteration-to-find-max-min-eigenvalue-vector), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R13
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersLinear Algebra についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
バージョン 公開済み リリース ノート
1.0.0.0