diff --git a/dune/xt/la/eigen-solver.hh b/dune/xt/la/eigen-solver.hh
index eea8c829dd34d88dc82345f9b6922ebf3dc4d042..bf9ab3587a582e9d8368902a5e9258ec961eec10 100644
--- a/dune/xt/la/eigen-solver.hh
+++ b/dune/xt/la/eigen-solver.hh
@@ -29,7 +29,7 @@ namespace LA {
 
 /**
  * \brief A means to obtain available options at compile time.
- * \note  This class needs to bespecialized for each MatrixType, the purpose of this class is merely to document the
+ * \note  This class needs to be specialized for each MatrixType, the purpose of this variant is merely to document the
  *        expected functionality.
  */
 template <class MatrixType>
diff --git a/dune/xt/la/eigen-solver/internal/base.hh b/dune/xt/la/eigen-solver/internal/base.hh
index 9a45891bf1d35d7ec791321495a796faed6224c5..31ef4e2ac64b5f716fc6585351655d7aa60a7165 100644
--- a/dune/xt/la/eigen-solver/internal/base.hh
+++ b/dune/xt/la/eigen-solver/internal/base.hh
@@ -64,6 +64,10 @@ static Common::Configuration default_eigen_solver_options()
 } // ... default_eigen_solver_options(...)
 
 
+/**
+ * \sa default_eigen_solver_options()
+ * \note If the provided options contain a subtree "matrix-inverter" that one is forwarded on eigenvector inversion.
+ */
 template <class MatrixImp, class FieldImp, class RealMatrixImp, class ComplexMatrixImp>
 class EigenSolverBase
 {
@@ -511,7 +515,11 @@ protected:
   {
     assert(eigenvectors_ && "This must not happen when you call this function!");
     try {
-      eigenvectors_inverse_ = std::make_unique<ComplexMatrixType>(invert_matrix(*eigenvectors_));
+      if (options_.has_sub("matrix-inverter")) {
+        eigenvectors_inverse_ =
+            std::make_unique<ComplexMatrixType>(invert_matrix(*eigenvectors_, options_.sub("matrix-inverter")));
+      } else
+        eigenvectors_inverse_ = std::make_unique<ComplexMatrixType>(invert_matrix(*eigenvectors_));
     } catch (const Exceptions::matrix_invert_failed& ee) {
       DUNE_THROW(Exceptions::eigen_solver_failed,
                  "The computed matrix of eigenvectors is not invertible!"
@@ -532,7 +540,11 @@ protected:
   {
     assert(real_eigenvectors_ && "This must not happen when you call this function!");
     try {
-      real_eigenvectors_inverse_ = std::make_unique<MatrixType>(invert_matrix(*real_eigenvectors_));
+      if (options_.has_sub("matrix-inverter")) {
+        real_eigenvectors_inverse_ =
+            std::make_unique<MatrixType>(invert_matrix(*real_eigenvectors_, options_.sub("matrix-inverter")));
+      } else
+        real_eigenvectors_inverse_ = std::make_unique<MatrixType>(invert_matrix(*real_eigenvectors_));
     } catch (const Exceptions::matrix_invert_failed& ee) {
       DUNE_THROW(Exceptions::eigen_solver_failed,
                  "The computed matrix of eigenvectors is not invertible!"