lamtsqr#
Functions
-
void slamtsqr(const char *side, const char *trans, const INT m, const INT n, const INT k, const INT mb, const INT nb, const f32 *restrict A, const INT lda, const f32 *restrict T, const INT ldt, f32 *restrict C, const INT ldc, f32 *restrict work, const INT lwork, INT *info)#
SLAMTSQR overwrites the general real M-by-N matrix C with.
TRANS = ‘N’: Q * C C * Q TRANS = ‘T’: Q^T * C C * Q^TSIDE = 'L' SIDE = 'R'
where Q is a real orthogonal matrix defined as the product of blocked elementary reflectors computed by tall skinny QR factorization (SLATSQR)
Parameters
inside‘L’: apply Q or Q^T from the Left; ‘R’: apply Q or Q^T from the Right.
intrans‘N’: No transpose, apply Q; ‘T’: Transpose, apply Q^T.
inmThe number of rows of the matrix C. m >= 0.
innThe number of columns of the matrix C. n >= 0.
inkThe number of elementary reflectors. m >= k >= 0.
inmbThe row block size used in the blocked QR. mb > n.
innbThe column block size. n >= nb >= 1.
inADouble precision array, dimension (lda, k). The blocked elementary reflectors as returned by SLATSQR.
inldaThe leading dimension of A. If SIDE = ‘L’, lda >= max(1, m); if SIDE = ‘R’, lda >= max(1, n).
inTDouble precision array containing the block reflectors.
inldtThe leading dimension of T. ldt >= nb.
inoutCDouble precision array, dimension (ldc, n). On entry, the M-by-N matrix C. On exit, C is overwritten by Q*C, Q^T*C, C*Q^T, or C*Q.
inldcThe leading dimension of C. ldc >= max(1, m).
outworkWorkspace array, dimension (max(1, lwork)).
inlworkThe dimension of work. If SIDE = ‘L’, lwork >= max(1, n*nb). If SIDE = ‘R’, lwork >= max(1, mb*nb). If lwork = -1, workspace query is assumed.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void slamtsqr(
const char* side,
const char* trans,
const INT m,
const INT n,
const INT k,
const INT mb,
const INT nb,
const f32* restrict A,
const INT lda,
const f32* restrict T,
const INT ldt,
f32* restrict C,
const INT ldc,
f32* restrict work,
const INT lwork,
INT* info
);
Functions
-
void dlamtsqr(const char *side, const char *trans, const INT m, const INT n, const INT k, const INT mb, const INT nb, const f64 *restrict A, const INT lda, const f64 *restrict T, const INT ldt, f64 *restrict C, const INT ldc, f64 *restrict work, const INT lwork, INT *info)#
DLAMTSQR overwrites the general real M-by-N matrix C with.
TRANS = ‘N’: Q * C C * Q TRANS = ‘T’: Q^T * C C * Q^TSIDE = 'L' SIDE = 'R'
where Q is a real orthogonal matrix defined as the product of blocked elementary reflectors computed by tall skinny QR factorization (DLATSQR)
Parameters
inside‘L’: apply Q or Q^T from the Left; ‘R’: apply Q or Q^T from the Right.
intrans‘N’: No transpose, apply Q; ‘T’: Transpose, apply Q^T.
inmThe number of rows of the matrix C. m >= 0.
innThe number of columns of the matrix C. n >= 0.
inkThe number of elementary reflectors. m >= k >= 0.
inmbThe row block size used in the blocked QR. mb > n.
innbThe column block size. n >= nb >= 1.
inADouble precision array, dimension (lda, k). The blocked elementary reflectors as returned by DLATSQR.
inldaThe leading dimension of A. If SIDE = ‘L’, lda >= max(1, m); if SIDE = ‘R’, lda >= max(1, n).
inTDouble precision array containing the block reflectors.
inldtThe leading dimension of T. ldt >= nb.
inoutCDouble precision array, dimension (ldc, n). On entry, the M-by-N matrix C. On exit, C is overwritten by Q*C, Q^T*C, C*Q^T, or C*Q.
inldcThe leading dimension of C. ldc >= max(1, m).
outworkWorkspace array, dimension (max(1, lwork)).
inlworkThe dimension of work. If SIDE = ‘L’, lwork >= max(1, n*nb). If SIDE = ‘R’, lwork >= max(1, mb*nb). If lwork = -1, workspace query is assumed.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void dlamtsqr(
const char* side,
const char* trans,
const INT m,
const INT n,
const INT k,
const INT mb,
const INT nb,
const f64* restrict A,
const INT lda,
const f64* restrict T,
const INT ldt,
f64* restrict C,
const INT ldc,
f64* restrict work,
const INT lwork,
INT* info
);
Functions
-
void clamtsqr(const char *side, const char *trans, const INT m, const INT n, const INT k, const INT mb, const INT nb, const c64 *restrict A, const INT lda, const c64 *restrict T, const INT ldt, c64 *restrict C, const INT ldc, c64 *restrict work, const INT lwork, INT *info)#
CLAMTSQR overwrites the general complex M-by-N matrix C with.
TRANS = ‘N’: Q * C C * Q TRANS = ‘C’: Q^H * C C * Q^HSIDE = 'L' SIDE = 'R'
where Q is a complex unitary matrix defined as the product of blocked elementary reflectors computed by tall skinny QR factorization (CLATSQR)
Parameters
inside‘L’: apply Q or Q^H from the Left; ‘R’: apply Q or Q^H from the Right.
intrans‘N’: No transpose, apply Q; ‘C’: Conjugate Transpose, apply Q^H.
inmThe number of rows of the matrix C. m >= 0.
innThe number of columns of the matrix C. n >= 0.
inkThe number of elementary reflectors. m >= k >= 0.
inmbThe row block size used in the blocked QR. mb > n.
innbThe column block size. n >= nb >= 1.
inAComplex*16 array, dimension (lda, k). The blocked elementary reflectors as returned by CLATSQR.
inldaThe leading dimension of A. If SIDE = ‘L’, lda >= max(1, m); if SIDE = ‘R’, lda >= max(1, n).
inTComplex*16 array containing the block reflectors.
inldtThe leading dimension of T. ldt >= nb.
inoutCComplex*16 array, dimension (ldc, n). On entry, the M-by-N matrix C. On exit, C is overwritten by Q*C, Q^H*C, C*Q^H, or C*Q.
inldcThe leading dimension of C. ldc >= max(1, m).
outworkWorkspace array, dimension (max(1, lwork)).
inlworkThe dimension of work. If SIDE = ‘L’, lwork >= max(1, n*nb). If SIDE = ‘R’, lwork >= max(1, m*nb). If lwork = -1, workspace query is assumed.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void clamtsqr(
const char* side,
const char* trans,
const INT m,
const INT n,
const INT k,
const INT mb,
const INT nb,
const c64* restrict A,
const INT lda,
const c64* restrict T,
const INT ldt,
c64* restrict C,
const INT ldc,
c64* restrict work,
const INT lwork,
INT* info
);
Functions
-
void zlamtsqr(const char *side, const char *trans, const INT m, const INT n, const INT k, const INT mb, const INT nb, const c128 *restrict A, const INT lda, const c128 *restrict T, const INT ldt, c128 *restrict C, const INT ldc, c128 *restrict work, const INT lwork, INT *info)#
ZLAMTSQR overwrites the general complex M-by-N matrix C with.
TRANS = ‘N’: Q * C C * Q TRANS = ‘C’: Q^H * C C * Q^HSIDE = 'L' SIDE = 'R'
where Q is a complex unitary matrix defined as the product of blocked elementary reflectors computed by tall skinny QR factorization (ZLATSQR)
Parameters
inside‘L’: apply Q or Q^H from the Left; ‘R’: apply Q or Q^H from the Right.
intrans‘N’: No transpose, apply Q; ‘C’: Conjugate Transpose, apply Q^H.
inmThe number of rows of the matrix C. m >= 0.
innThe number of columns of the matrix C. n >= 0.
inkThe number of elementary reflectors. m >= k >= 0.
inmbThe row block size used in the blocked QR. mb > n.
innbThe column block size. n >= nb >= 1.
inAComplex*16 array, dimension (lda, k). The blocked elementary reflectors as returned by ZLATSQR.
inldaThe leading dimension of A. If SIDE = ‘L’, lda >= max(1, m); if SIDE = ‘R’, lda >= max(1, n).
inTComplex*16 array containing the block reflectors.
inldtThe leading dimension of T. ldt >= nb.
inoutCComplex*16 array, dimension (ldc, n). On entry, the M-by-N matrix C. On exit, C is overwritten by Q*C, Q^H*C, C*Q^H, or C*Q.
inldcThe leading dimension of C. ldc >= max(1, m).
outworkWorkspace array, dimension (max(1, lwork)).
inlworkThe dimension of work. If SIDE = ‘L’, lwork >= max(1, n*nb). If SIDE = ‘R’, lwork >= max(1, m*nb). If lwork = -1, workspace query is assumed.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void zlamtsqr(
const char* side,
const char* trans,
const INT m,
const INT n,
const INT k,
const INT mb,
const INT nb,
const c128* restrict A,
const INT lda,
const c128* restrict T,
const INT ldt,
c128* restrict C,
const INT ldc,
c128* restrict work,
const INT lwork,
INT* info
);