Intel® oneAPI Math Kernel Library Developer Reference - C
Generates the complex unitary matrix Q determined by ?hptrd.
lapack_int LAPACKE_cupgtr (int matrix_layout, char uplo, lapack_int n, const lapack_complex_float* ap, const lapack_complex_float* tau, lapack_complex_float* q, lapack_int ldq);
lapack_int LAPACKE_zupgtr (int matrix_layout, char uplo, lapack_int n, const lapack_complex_double* ap, const lapack_complex_double* tau, lapack_complex_double* q, lapack_int ldq);
The routine explicitly generates the n-by-n unitary matrix Q formed by hptrd when reducing a packed complex Hermitian matrix A to tridiagonal form: A = Q*T*QH. Use this routine after a call to ?hptrd.
Specifies whether matrix storage layout is row major (LAPACK_ROW_MAJOR) or column major (LAPACK_COL_MAJOR).
Must be 'U' or 'L'. Use the same uplo as supplied to ?hptrd.
The order of the matrix Q (n≥ 0).
Arrays ap and tau, as returned by ?hptrd.
The dimension of ap must be at least max(1, n(n+1)/2).
The dimension of tau must be at least max(1, n-1).
The leading dimension of the output array q;
at least max(1, n).
Array, size (size max(1, ldq*n)) .
Contains the computed matrix Q.
This function returns a value info.
If info=0, the execution is successful.
If info = -i, the i-th parameter had an illegal value.
The computed matrix Q differs from an exactly orthogonal matrix by a matrix E such that ||E||2 = O(ε), where ε is the machine precision.
The approximate number of floating-point operations is (16/3)n3.
The real counterpart of this routine is opgtr.