unmhr#
Functions
-
void cunmhr(const char *side, const char *trans, const INT m, const INT n, const INT ilo, const INT ihi, const c64 *A, const INT lda, const c64 *tau, c64 *C, const INT ldc, c64 *work, const INT lwork, INT *info)#
CUNMHR overwrites the general complex M-by-N matrix C with.
where Q is a complex unitary matrix of order nq (nq = m if SIDE = ‘L’, nq = n if SIDE = ‘R’). Q is defined as the product of IHI-ILO elementary reflectors, as returned by CGEHRD:SIDE = 'L' SIDE = 'R' Q * C C * Q (TRANS = 'N') Q^H * C C * Q^H (TRANS = 'C')
Q = H(ilo) H(ilo+1) ... H(ihi-1)
Parameters
inside‘L’ to apply Q or Q^H from the Left; ‘R’ to apply Q or Q^H from the Right.
intrans‘N’ for no transpose; ‘C’ for conjugate transpose.
inmNumber of rows of C. m >= 0.
innNumber of columns of C. n >= 0.
iniloIndex ilo from CGEHRD (0-based).
inihiIndex ihi from CGEHRD (0-based).
inAArray containing the elementary reflectors from CGEHRD.
inldaLeading dimension of A.
intauArray of scalar factors from CGEHRD.
inoutCOn entry, the M-by-N matrix C. On exit, C is overwritten by Q*C or Q^H*C or C*Q^H or C*Q.
inldcLeading dimension of C. ldc >= max(1, m).
outworkWorkspace array, dimension (max(1, lwork)).
inlworkDimension of work array. If lwork = -1, workspace query is assumed.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void cunmhr(
const char* side,
const char* trans,
const INT m,
const INT n,
const INT ilo,
const INT ihi,
const c64* A,
const INT lda,
const c64* tau,
c64* C,
const INT ldc,
c64* work,
const INT lwork,
INT* info
);
Functions
-
void zunmhr(const char *side, const char *trans, const INT m, const INT n, const INT ilo, const INT ihi, const c128 *A, const INT lda, const c128 *tau, c128 *C, const INT ldc, c128 *work, const INT lwork, INT *info)#
ZUNMHR overwrites the general complex M-by-N matrix C with.
where Q is a complex unitary matrix of order nq (nq = m if SIDE = ‘L’, nq = n if SIDE = ‘R’). Q is defined as the product of IHI-ILO elementary reflectors, as returned by ZGEHRD:SIDE = 'L' SIDE = 'R' Q * C C * Q (TRANS = 'N') Q^H * C C * Q^H (TRANS = 'C')
Q = H(ilo) H(ilo+1) ... H(ihi-1)
Parameters
inside‘L’ to apply Q or Q^H from the Left; ‘R’ to apply Q or Q^H from the Right.
intrans‘N’ for no transpose; ‘C’ for conjugate transpose.
inmNumber of rows of C. m >= 0.
innNumber of columns of C. n >= 0.
iniloIndex ilo from ZGEHRD (0-based).
inihiIndex ihi from ZGEHRD (0-based).
inAArray containing the elementary reflectors from ZGEHRD.
inldaLeading dimension of A.
intauArray of scalar factors from ZGEHRD.
inoutCOn entry, the M-by-N matrix C. On exit, C is overwritten by Q*C or Q^H*C or C*Q^H or C*Q.
inldcLeading dimension of C. ldc >= max(1, m).
outworkWorkspace array, dimension (max(1, lwork)).
inlworkDimension of work array. If lwork = -1, workspace query is assumed.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void zunmhr(
const char* side,
const char* trans,
const INT m,
const INT n,
const INT ilo,
const INT ihi,
const c128* A,
const INT lda,
const c128* tau,
c128* C,
const INT ldc,
c128* work,
const INT lwork,
INT* info
);