MCPcopy Create free account
hub / github.com/QuEST-Kit/QuEST / util_getTranspose

Function util_getTranspose

quest/src/core/utilities.cpp:456–460  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

454}
455
456CompMatr1 util_getTranspose(CompMatr1 matrix) {
457 CompMatr1 conj = matrix;
458 setDenseElemsTranspose(conj.elems, matrix.numRows);
459 return conj;
460}
461CompMatr2 util_getTranspose(CompMatr2 matrix) {
462 CompMatr2 conj = matrix;
463 setDenseElemsTranspose(conj.elems, matrix.numRows);

Calls 1

setDenseElemsTransposeFunction · 0.85

Tested by

no test coverage detected