How to find out if matrix is invertible (regular, nonsingular, full rank...) in Eigen?

StackOverflow https://stackoverflow.com/questions/23155762

  •  05-07-2023
  •  | 
  •  

When computing the inverse of a matrix in Eigen it is up to the user to check if this can be done:

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

but how can I check for this condition in Eigen?

有帮助吗?

解决方案

Eigen provides a rank-revealing LU decomposition, which provides an isInvertible member function.

See

其他提示

There are plenty of other properties of matrices that hold only for invertible matrices. You can check one of those to see if the matrix is invertible.

One possibility is to check if the determinant is 0. Iff so, the matrix is not invertible.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top