+-
c – 如何在Eigen中找出矩阵是否可逆(正则,非奇异,满秩……)?
在Eigen it is up to the user to check if this can be done:中计算矩阵的逆矩阵时

This matrix must be invertible, otherwise the result is undefined.

但是如何在Eigen检查这个条件?

最佳答案
Eigen提供了一个排名显示的LU分解,它提供了一个 isInvertible member function.

看到

> class Eigen::FullPivLU< MatrixType >

点击查看更多相关文章

转载注明原文:c – 如何在Eigen中找出矩阵是否可逆(正则,非奇异,满秩……)? - 乐贴网