gemlqt#
Functions
-
void sgemlqt(const char *side, const char *trans, const INT m, const INT n, const INT k, const INT mb, const f32 *restrict V, const INT ldv, const f32 *restrict T, const INT ldt, f32 *restrict C, const INT ldc, f32 *restrict work, INT *info)#
SGEMLQT 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 K elementary reflectors:
Q = H(0) H(1) … H(K-1) = I - V T V^T
generated using the compact WY representation as returned by SGELQT.
Q is of order M if SIDE = ‘L’ and of order N if SIDE = ‘R’.
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 whose product defines the matrix Q. If SIDE = “L”, m >= k >= 0; if SIDE = “R”, n >= k >= 0.
inmbThe block size used for the storage of T. k >= mb >= 1. This must be the same value of mb used to generate T in SGELQT.
inVDouble precision array, dimension (ldv, m) if SIDE = ‘L’, (ldv, n) if SIDE = ‘R’. The i-th row must contain the vector which defines the elementary reflector H(i), for i = 0,1,…,k-1, as returned by SGELQT in the first k rows of its array argument A.
inldvThe leading dimension of the array V. ldv >= max(1, k).
inTDouble precision array, dimension (ldt, k). The upper triangular factors of the block reflectors as returned by SGELQT, stored as an mb-by-k matrix.
inldtThe leading dimension of the array T. ldt >= mb.
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 the array C. ldc >= max(1, m).
outworkDouble precision workspace array. Dimension is n*mb if SIDE = “L”, or m*mb if SIDE = ‘R’.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value.
void sgemlqt(
const char* side,
const char* trans,
const INT m,
const INT n,
const INT k,
const INT mb,
const f32* restrict V,
const INT ldv,
const f32* restrict T,
const INT ldt,
f32* restrict C,
const INT ldc,
f32* restrict work,
INT* info
);
Functions
-
void dgemlqt(const char *side, const char *trans, const INT m, const INT n, const INT k, const INT mb, const f64 *restrict V, const INT ldv, const f64 *restrict T, const INT ldt, f64 *restrict C, const INT ldc, f64 *restrict work, INT *info)#
DGEMLQT 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 K elementary reflectors:
Q = H(0) H(1) … H(K-1) = I - V T V^T
generated using the compact WY representation as returned by DGELQT.
Q is of order M if SIDE = ‘L’ and of order N if SIDE = ‘R’.
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 whose product defines the matrix Q. If SIDE = “L”, m >= k >= 0; if SIDE = “R”, n >= k >= 0.
inmbThe block size used for the storage of T. k >= mb >= 1. This must be the same value of mb used to generate T in DGELQT.
inVDouble precision array, dimension (ldv, m) if SIDE = ‘L’, (ldv, n) if SIDE = ‘R’. The i-th row must contain the vector which defines the elementary reflector H(i), for i = 0,1,…,k-1, as returned by DGELQT in the first k rows of its array argument A.
inldvThe leading dimension of the array V. ldv >= max(1, k).
inTDouble precision array, dimension (ldt, k). The upper triangular factors of the block reflectors as returned by DGELQT, stored as an mb-by-k matrix.
inldtThe leading dimension of the array T. ldt >= mb.
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 the array C. ldc >= max(1, m).
outworkDouble precision workspace array. Dimension is n*mb if SIDE = “L”, or m*mb if SIDE = ‘R’.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value.
void dgemlqt(
const char* side,
const char* trans,
const INT m,
const INT n,
const INT k,
const INT mb,
const f64* restrict V,
const INT ldv,
const f64* restrict T,
const INT ldt,
f64* restrict C,
const INT ldc,
f64* restrict work,
INT* info
);
Functions
-
void cgemlqt(const char *side, const char *trans, const INT m, const INT n, const INT k, const INT mb, const c64 *restrict V, const INT ldv, const c64 *restrict T, const INT ldt, c64 *restrict C, const INT ldc, c64 *restrict work, INT *info)#
CGEMLQT 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 K elementary reflectors:
Q = H(0) H(1) … H(K-1) = I - V T V^H
generated using the compact WY representation as returned by CGELQT.
Q is of order M if SIDE = ‘L’ and of order N if SIDE = ‘R’.
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 whose product defines the matrix Q. If SIDE = “L”, m >= k >= 0; if SIDE = “R”, n >= k >= 0.
inmbThe block size used for the storage of T. k >= mb >= 1. This must be the same value of mb used to generate T in CGELQT.
inVSingle complex array, dimension (ldv, m) if SIDE = ‘L’, (ldv, n) if SIDE = ‘R’. The i-th row must contain the vector which defines the elementary reflector H(i), for i = 0,1,…,k-1, as returned by CGELQT in the first k rows of its array argument A.
inldvThe leading dimension of the array V. ldv >= max(1, k).
inTSingle complex array, dimension (ldt, k). The upper triangular factors of the block reflectors as returned by CGELQT, stored as an mb-by-k matrix.
inldtThe leading dimension of the array T. ldt >= mb.
inoutCSingle complex 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 the array C. ldc >= max(1, m).
outworkSingle complex workspace array. Dimension is n*mb if SIDE = “L”, or m*mb if SIDE = ‘R’.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value.
void cgemlqt(
const char* side,
const char* trans,
const INT m,
const INT n,
const INT k,
const INT mb,
const c64* restrict V,
const INT ldv,
const c64* restrict T,
const INT ldt,
c64* restrict C,
const INT ldc,
c64* restrict work,
INT* info
);
Functions
-
void zgemlqt(const char *side, const char *trans, const INT m, const INT n, const INT k, const INT mb, const c128 *restrict V, const INT ldv, const c128 *restrict T, const INT ldt, c128 *restrict C, const INT ldc, c128 *restrict work, INT *info)#
ZGEMLQT 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 K elementary reflectors:
Q = H(0) H(1) … H(K-1) = I - V T V^H
generated using the compact WY representation as returned by ZGELQT.
Q is of order M if SIDE = ‘L’ and of order N if SIDE = ‘R’.
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 whose product defines the matrix Q. If SIDE = “L”, m >= k >= 0; if SIDE = “R”, n >= k >= 0.
inmbThe block size used for the storage of T. k >= mb >= 1. This must be the same value of mb used to generate T in ZGELQT.
inVDouble complex array, dimension (ldv, m) if SIDE = ‘L’, (ldv, n) if SIDE = ‘R’. The i-th row must contain the vector which defines the elementary reflector H(i), for i = 0,1,…,k-1, as returned by ZGELQT in the first k rows of its array argument A.
inldvThe leading dimension of the array V. ldv >= max(1, k).
inTDouble complex array, dimension (ldt, k). The upper triangular factors of the block reflectors as returned by ZGELQT, stored as an mb-by-k matrix.
inldtThe leading dimension of the array T. ldt >= mb.
inoutCDouble complex 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 the array C. ldc >= max(1, m).
outworkDouble complex workspace array. Dimension is n*mb if SIDE = “L”, or m*mb if SIDE = ‘R’.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value.
void zgemlqt(
const char* side,
const char* trans,
const INT m,
const INT n,
const INT k,
const INT mb,
const c128* restrict V,
const INT ldv,
const c128* restrict T,
const INT ldt,
c128* restrict C,
const INT ldc,
c128* restrict work,
INT* info
);