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