ormhr#
Functions
-
void sormhr(const char *side, const char *trans, const INT m, const INT n, const INT ilo, const INT ihi, const f32 *A, const INT lda, const f32 *tau, f32 *C, const INT ldc, f32 *work, const INT lwork, INT *info)#
SORMHR overwrites the general real M-by-N matrix C with.
where Q is a real orthogonal 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 SGEHRD:SIDE = 'L' SIDE = 'R' Q * C C * Q (TRANS = 'N') Q^T * C C * Q^T (TRANS = 'T')
Q = H(ilo) H(ilo+1) ... H(ihi-1)
Parameters
inside‘L’ to apply Q or Q^T from the Left; ‘R’ to apply Q or Q^T from the Right.
intrans‘N’ for no transpose; ‘T’ for transpose.
inmNumber of rows of C. m >= 0.
innNumber of columns of C. n >= 0.
iniloIndex ilo from SGEHRD (0-based).
inihiIndex ihi from SGEHRD (0-based).
inAArray containing the elementary reflectors from SGEHRD.
inldaLeading dimension of A.
intauArray of scalar factors from SGEHRD.
inoutCOn entry, the M-by-N matrix C. On exit, C is overwritten by Q*C or Q^T*C or C*Q^T 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 sormhr(
const char* side,
const char* trans,
const INT m,
const INT n,
const INT ilo,
const INT ihi,
const f32* A,
const INT lda,
const f32* tau,
f32* C,
const INT ldc,
f32* work,
const INT lwork,
INT* info
);
Functions
-
void dormhr(const char *side, const char *trans, const INT m, const INT n, const INT ilo, const INT ihi, const f64 *A, const INT lda, const f64 *tau, f64 *C, const INT ldc, f64 *work, const INT lwork, INT *info)#
DORMHR overwrites the general real M-by-N matrix C with.
where Q is a real orthogonal 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 DGEHRD:SIDE = 'L' SIDE = 'R' Q * C C * Q (TRANS = 'N') Q^T * C C * Q^T (TRANS = 'T')
Q = H(ilo) H(ilo+1) ... H(ihi-1)
Parameters
inside‘L’ to apply Q or Q^T from the Left; ‘R’ to apply Q or Q^T from the Right.
intrans‘N’ for no transpose; ‘T’ for transpose.
inmNumber of rows of C. m >= 0.
innNumber of columns of C. n >= 0.
iniloIndex ilo from DGEHRD (0-based).
inihiIndex ihi from DGEHRD (0-based).
inAArray containing the elementary reflectors from DGEHRD.
inldaLeading dimension of A.
intauArray of scalar factors from DGEHRD.
inoutCOn entry, the M-by-N matrix C. On exit, C is overwritten by Q*C or Q^T*C or C*Q^T 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 dormhr(
const char* side,
const char* trans,
const INT m,
const INT n,
const INT ilo,
const INT ihi,
const f64* A,
const INT lda,
const f64* tau,
f64* C,
const INT ldc,
f64* work,
const INT lwork,
INT* info
);