* \brief Extracts the imaginary part of the complex matrix. * This method is only available for complex matrices. * This is the non-const lvalue version */
| 1284 | * This is the non-const lvalue version |
| 1285 | */ |
| 1286 | ExtractComplexPartOp<Type, true, true> imag() |
| 1287 | { |
| 1288 | CUMAT_STATIC_ASSERT(internal::NumTraits<_Scalar>::IsComplex, "Matrix must be complex"); |
| 1289 | return ExtractComplexPartOp<Type, true, true>(*this); |
| 1290 | } |
| 1291 | |
| 1292 | }; |
| 1293 |
nothing calls this directly
no outgoing calls
no test coverage detected