| 55 | } |
| 56 | |
| 57 | CompMatr2 getCompMatr2(vector<vector<qcomp>> in) { |
| 58 | validate_matrixNumNewElems(2, in, __func__); |
| 59 | |
| 60 | qcomp* rowPtrs[] = {in[0].data(), in[1].data(), in[2].data(), in[3].data()}; |
| 61 | return getCompMatr2(rowPtrs); |
| 62 | } |
| 63 | |
| 64 | |
| 65 | DiagMatr1 getDiagMatr1(vector<qcomp> in) { |
no test coverage detected