使用特征向量矩阵对特征值矩阵进行排序
我有 N 个列向量形式的特征值。 因此这些特征值对应有N个特征向量,形成特征向量矩阵。
现在,我正在处理的问题要求我按降序对特征值列向量进行排序。如何按照与特征值相同的顺序对特征向量矩阵进行排序以保持对应关系?
I have N eigenvalues in column vector form.
Thus there are N eigenvectors corresponding to these eigenvalues, forming an eigenvector matrix.
Now, the problem I am working on requires me to sort the eigenvalues column vector in descending order. How do I sort the eigenvectors matrix in the same order as their eigenvalues in order to preserve correspondence?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
例如,
或者如果您希望它们采用相同的形式,请将最后一行替换为
EDIT:虽然我使用了
{evals,evecs}=Eigensystem[m]
,但这是不必要的。我可以只使用s=Eigensystem[m]
,然后在当前拥有{evals,evecs}
的任何地方使用s
。For example,
or if you want them in the same form, replace the last line by
EDIT: while I used
{evals,evecs}=Eigensystem[m]
, that's not necessary. I could just have useds=Eigensystem[m]
and then useds
wherever I currently have{evals,evecs}
.虽然 @acl 和 @yoda 的排序方式(即将列表元素配对然后一起排序)很简单且常用,但我想展示另一种通用方法,可以根据一个特定列表轻松对任意数量的列表进行排序(
列表1):
While @acl and @yoda's ways of sorting (i.e. pairing the list elements then sorting together) is easy and commonly used, I'd like to show another generic method to easily sort an arbitrary number of lists based on one particular list (
list1
):您可以使用
Sort
函数根据特征值对特征系统进行排序。Sort
的默认行为是按第一列排序。You can use the
Sort
function to sort the eigensystem according to the eigenvalues.Sort
's default behavior is to sort by the first column.