\returns an expression of the transposed of the factored matrix. * * A typical usage is to solve for the transposed problem A^T x = b: * \code x = dec.transpose().solve(b); \endcode * * \sa adjoint(), solve() */
| 120 | * \sa adjoint(), solve() |
| 121 | */ |
| 122 | inline const ConstTransposeReturnType transpose() const |
| 123 | { |
| 124 | return ConstTransposeReturnType(derived()); |
| 125 | } |
| 126 | |
| 127 | /** \internal the return type of adjoint() */ |
| 128 | typedef std::conditional_t<NumTraits<Scalar>::IsComplex, |