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

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

  •  05-07-2023
  •  | 
  •  

Frage

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?

War es hilfreich?

Lösung

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

See

Andere Tipps

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.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top