What is the fastest way to compute the first eigenvector?

15 ビュー (過去 30 日間)
Shojiro SHIBAYAMA
Shojiro SHIBAYAMA 2019 年 6 月 10 日
コメント済み: gonzalo Mier 2020 年 4 月 3 日
I'd like to know a way to compute the first eigenvector (the eigenvector with the largest eigenvalue) of a matrix A. Now I am using eig function.
[V, D] = eig(A);
However, this computes all eigenvectors of A, resulting in slow computation.
Does anyone know if there is a fastest way to compute the eigenvector? Thank you in advance.

採用された回答

gonzalo Mier
gonzalo Mier 2019 年 6 月 10 日
Read about eigs
  4 件のコメント
Shojiro SHIBAYAMA
Shojiro SHIBAYAMA 2020 年 2 月 10 日
編集済み: Shojiro SHIBAYAMA 2020 年 2 月 10 日
Wow thank you for the fruitful reply. I also have saw the results:
>> A=randn(100, 10);
>> AtA = A'*A;
>> rank(AtA)
10
>> tic;for i = 1:1000; eig(AtA);end; toc;
Elapsed time is 0.000973 seconds.
>> tic;for i = 1:1000; eigs(AtA);end; toc;
Elapsed time is 0.247325 seconds.
I am going to replace eigs with eig.
gonzalo Mier
gonzalo Mier 2020 年 4 月 3 日
Really interesting! Thank you for contribute

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by