\returns an expression of the adjoint of the factored matrix * * A typical usage is to solve for the adjoint problem A' x = b: * \code x = dec.adjoint().solve(b); \endcode * * For real scalar types, this function is equivalent to transpose(). * * \sa transpose(), solve() */
| 139 | * \sa transpose(), solve() |
| 140 | */ |
| 141 | inline const AdjointReturnType adjoint() const |
| 142 | { |
| 143 | return AdjointReturnType(derived().transpose()); |
| 144 | } |
| 145 | |
| 146 | protected: |
| 147 |
no test coverage detected