| 85 | */ |
| 86 | template<typename Rhs> |
| 87 | inline const Solve<Derived, Rhs> |
| 88 | solve(const MatrixBase<Rhs>& b) const |
| 89 | { |
| 90 | eigen_assert(m_isInitialized && "Solver is not initialized."); |
| 91 | eigen_assert(derived().rows()==b.rows() && "solve(): invalid number of rows of the right hand side matrix b"); |
| 92 | return Solve<Derived, Rhs>(derived(), b.derived()); |
| 93 | } |
| 94 | |
| 95 | /** \returns an expression of the solution x of \f$ A x = b \f$ using the current decomposition of A. |
| 96 | * |
no test coverage detected