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