OjAlgo 特征值是否总是按降序排列?
Is OjAlgo eigenvalues always on descended order?
使用 OjAlgo 计算特征值时。特征值总是降序排列吗?
来自 Eigenvalue#isOrdered
的文档:
The eigenvalues in D (and the eigenvectors in V) are not necessarily ordered. This is a property of the algorithm/implementation, not the data.
这取决于为计算特征值选择的算法。例如,在classRawEigenvalue.Symmetric
、isOrdered()
returns中为真。根据我有限的理解,当矩阵是实数、对称且不太大(并且可能在其他情况下)时,使用这种特殊分解。
使用 OjAlgo 计算特征值时。特征值总是降序排列吗?
来自 Eigenvalue#isOrdered
的文档:
The eigenvalues in D (and the eigenvectors in V) are not necessarily ordered. This is a property of the algorithm/implementation, not the data.
这取决于为计算特征值选择的算法。例如,在classRawEigenvalue.Symmetric
、isOrdered()
returns中为真。根据我有限的理解,当矩阵是实数、对称且不太大(并且可能在其他情况下)时,使用这种特殊分解。