| 408 | } |
| 409 | |
| 410 | CompMatr1 util_getConj(CompMatr1 matrix) { |
| 411 | CompMatr1 conj = matrix; |
| 412 | setDenseElemsConj(conj.elems, matrix.numRows); |
| 413 | return conj; |
| 414 | } |
| 415 | CompMatr2 util_getConj(CompMatr2 matrix) { |
| 416 | CompMatr2 conj = matrix; |
| 417 | setDenseElemsConj(conj.elems, matrix.numRows); |
no test coverage detected