tpmlqt#
Functions
-
void stpmlqt(const char *side, const char *trans, const INT m, const INT n, const INT k, const INT l, const INT mb, const f32 *restrict V, const INT ldv, const f32 *restrict T, const INT ldt, f32 *restrict A, const INT lda, f32 *restrict B, const INT ldb, f32 *restrict work, INT *info)#
STPMLQT applies a real orthogonal matrix Q obtained from a “triangular-pentagonal” real block reflector H to a general real matrix C, which consists of two blocks A and B.
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 B. m >= 0.
innThe number of columns of the matrix B. n >= 0.
inkThe number of elementary reflectors whose product defines the matrix Q.
inlThe order of the trapezoidal part of V. k >= l >= 0. See Further Details.
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 STPLQT.
inVDouble precision array, dimension (ldv,k). The i-th row must contain the vector which defines the elementary reflector H(i), as returned by STPLQT in B.
inldvThe leading dimension of V. ldv >= k.
inTDouble precision array, dimension (ldt,k). The upper triangular factors of the block reflectors as returned by STPLQT, stored as a mb-by-k matrix.
inldtThe leading dimension of T. ldt >= mb.
inoutADouble precision array, dimension (lda,n) if side=’L’ or (lda,k) if side=’R’. On entry, the k-by-n or m-by-k matrix A. On exit, A is overwritten by the corresponding block of Q*C or Q**T*C or C*Q or C*Q**T.
inldaThe leading dimension of A. If side = ‘L’, lda >= max(1,k); if side = ‘R’, lda >= max(1,m).
inoutBDouble precision array, dimension (ldb,n). On entry, the m-by-n matrix B. On exit, B is overwritten by the corresponding block of Q*C or Q**T*C or C*Q or C*Q**T.
inldbThe leading dimension of B. ldb >= max(1,m).
outworkDouble precision 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 stpmlqt(
const char* side,
const char* trans,
const INT m,
const INT n,
const INT k,
const INT l,
const INT mb,
const f32* restrict V,
const INT ldv,
const f32* restrict T,
const INT ldt,
f32* restrict A,
const INT lda,
f32* restrict B,
const INT ldb,
f32* restrict work,
INT* info
);
Functions
-
void dtpmlqt(const char *side, const char *trans, const INT m, const INT n, const INT k, const INT l, const INT mb, const f64 *restrict V, const INT ldv, const f64 *restrict T, const INT ldt, f64 *restrict A, const INT lda, f64 *restrict B, const INT ldb, f64 *restrict work, INT *info)#
DTPMLQT applies a real orthogonal matrix Q obtained from a “triangular-pentagonal” real block reflector H to a general real matrix C, which consists of two blocks A and B.
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 B. m >= 0.
innThe number of columns of the matrix B. n >= 0.
inkThe number of elementary reflectors whose product defines the matrix Q.
inlThe order of the trapezoidal part of V. k >= l >= 0. See Further Details.
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 DTPLQT.
inVDouble precision array, dimension (ldv,k). The i-th row must contain the vector which defines the elementary reflector H(i), as returned by DTPLQT in B.
inldvThe leading dimension of V. ldv >= k.
inTDouble precision array, dimension (ldt,k). The upper triangular factors of the block reflectors as returned by DTPLQT, stored as a mb-by-k matrix.
inldtThe leading dimension of T. ldt >= mb.
inoutADouble precision array, dimension (lda,n) if side=’L’ or (lda,k) if side=’R’. On entry, the k-by-n or m-by-k matrix A. On exit, A is overwritten by the corresponding block of Q*C or Q**T*C or C*Q or C*Q**T.
inldaThe leading dimension of A. If side = ‘L’, lda >= max(1,k); if side = ‘R’, lda >= max(1,m).
inoutBDouble precision array, dimension (ldb,n). On entry, the m-by-n matrix B. On exit, B is overwritten by the corresponding block of Q*C or Q**T*C or C*Q or C*Q**T.
inldbThe leading dimension of B. ldb >= max(1,m).
outworkDouble precision 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 dtpmlqt(
const char* side,
const char* trans,
const INT m,
const INT n,
const INT k,
const INT l,
const INT mb,
const f64* restrict V,
const INT ldv,
const f64* restrict T,
const INT ldt,
f64* restrict A,
const INT lda,
f64* restrict B,
const INT ldb,
f64* restrict work,
INT* info
);
Functions
-
void ctpmlqt(const char *side, const char *trans, const INT m, const INT n, const INT k, const INT l, const INT mb, const c64 *restrict V, const INT ldv, const c64 *restrict T, const INT ldt, c64 *restrict A, const INT lda, c64 *restrict B, const INT ldb, c64 *restrict work, INT *info)#
CTPMLQT applies a complex unitary matrix Q obtained from a “triangular-pentagonal” complex block reflector H to a general complex matrix C, which consists of two blocks A and B.
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 B. m >= 0.
innThe number of columns of the matrix B. n >= 0.
inkThe number of elementary reflectors whose product defines the matrix Q.
inlThe order of the trapezoidal part of V. k >= l >= 0. See Further Details.
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 CTPLQT.
inVComplex*16 array, dimension (ldv,k). The i-th row must contain the vector which defines the elementary reflector H(i), as returned by CTPLQT in B.
inldvThe leading dimension of V. ldv >= k.
inTComplex*16 array, dimension (ldt,k). The upper triangular factors of the block reflectors as returned by CTPLQT, stored as a mb-by-k matrix.
inldtThe leading dimension of T. ldt >= mb.
inoutAComplex*16 array, dimension (lda,n) if side=’L’ or (lda,k) if side=’R’. On entry, the k-by-n or m-by-k matrix A. On exit, A is overwritten by the corresponding block of Q*C or Q**H*C or C*Q or C*Q**H.
inldaThe leading dimension of A. If side = ‘L’, lda >= max(1,k); if side = ‘R’, lda >= max(1,m).
inoutBComplex*16 array, dimension (ldb,n). On entry, the m-by-n matrix B. On exit, B is overwritten by the corresponding block of Q*C or Q**H*C or C*Q or C*Q**H.
inldbThe leading dimension of B. ldb >= max(1,m).
outworkComplex*16 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 ctpmlqt(
const char* side,
const char* trans,
const INT m,
const INT n,
const INT k,
const INT l,
const INT mb,
const c64* restrict V,
const INT ldv,
const c64* restrict T,
const INT ldt,
c64* restrict A,
const INT lda,
c64* restrict B,
const INT ldb,
c64* restrict work,
INT* info
);
Functions
-
void ztpmlqt(const char *side, const char *trans, const INT m, const INT n, const INT k, const INT l, const INT mb, const c128 *restrict V, const INT ldv, const c128 *restrict T, const INT ldt, c128 *restrict A, const INT lda, c128 *restrict B, const INT ldb, c128 *restrict work, INT *info)#
ZTPMLQT applies a complex unitary matrix Q obtained from a “triangular-pentagonal” complex block reflector H to a general complex matrix C, which consists of two blocks A and B.
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 B. m >= 0.
innThe number of columns of the matrix B. n >= 0.
inkThe number of elementary reflectors whose product defines the matrix Q.
inlThe order of the trapezoidal part of V. k >= l >= 0. See Further Details.
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 ZTPLQT.
inVComplex*16 array, dimension (ldv,k). The i-th row must contain the vector which defines the elementary reflector H(i), as returned by ZTPLQT in B.
inldvThe leading dimension of V. ldv >= k.
inTComplex*16 array, dimension (ldt,k). The upper triangular factors of the block reflectors as returned by ZTPLQT, stored as a mb-by-k matrix.
inldtThe leading dimension of T. ldt >= mb.
inoutAComplex*16 array, dimension (lda,n) if side=’L’ or (lda,k) if side=’R’. On entry, the k-by-n or m-by-k matrix A. On exit, A is overwritten by the corresponding block of Q*C or Q**H*C or C*Q or C*Q**H.
inldaThe leading dimension of A. If side = ‘L’, lda >= max(1,k); if side = ‘R’, lda >= max(1,m).
inoutBComplex*16 array, dimension (ldb,n). On entry, the m-by-n matrix B. On exit, B is overwritten by the corresponding block of Q*C or Q**H*C or C*Q or C*Q**H.
inldbThe leading dimension of B. ldb >= max(1,m).
outworkComplex*16 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 ztpmlqt(
const char* side,
const char* trans,
const INT m,
const INT n,
const INT k,
const INT l,
const INT mb,
const c128* restrict V,
const INT ldv,
const c128* restrict T,
const INT ldt,
c128* restrict A,
const INT lda,
c128* restrict B,
const INT ldb,
c128* restrict work,
INT* info
);