| 63 | |
| 64 | |
| 65 | DiagMatr1 getDiagMatr1(vector<qcomp> in) { |
| 66 | validate_matrixNumNewElems(1, in, __func__); |
| 67 | |
| 68 | return getDiagMatr1(in.data()); |
| 69 | } |
| 70 | |
| 71 | DiagMatr2 getDiagMatr2(vector<qcomp> in) { |
| 72 | validate_matrixNumNewElems(2, in, __func__); |
no test coverage detected