MCPcopy Create free account
hub / github.com/Meshcapade/difflocks / imag

Function imag

extensions/include/cuMat/src/Matrix.h:1286–1290  ·  view source on GitHub ↗

* \brief Extracts the imaginary part of the complex matrix. * This method is only available for complex matrices. * This is the non-const lvalue version */

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected