フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

finding some eigenvalues using eigs

1 回表示 (過去 30 日間)
mim
mim 2013 年 8 月 7 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I want to find eigenvalues of a matrix with size a few thoushands and I know the eigenvalues span through [- big number , + big number]. How can I find just those eigenvalues that they are in an specific range like: [-a , a] with a is known. Matrix is real symmetric. thanks

回答 (1 件)

David Sanchez
David Sanchez 2013 年 8 月 8 日
I hope it helps:
greater_array = find( my_eigenvalue_array > -a );
wanted_eig_array = find (greater_array < a );

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by