trttf#
Functions
-
void strttf(const char *transr, const char *uplo, const INT n, const f32 *restrict A, const INT lda, f32 *restrict ARF, INT *info)#
STRTTF copies a triangular matrix A from standard full format (TR) to rectangular full packed format (TF).
Parameters
intransr= ‘N’: ARF in Normal form is wanted; = ‘T’: ARF in Transpose form is wanted.
inuplo= ‘U’: Upper triangle of A is stored; = ‘L’: Lower triangle of A is stored.
innThe order of the matrix A. n >= 0.
inADouble precision array, dimension (lda,n). On entry, the triangular matrix A. If UPLO = ‘U’, the leading n-by-n upper triangular part of the array A contains the upper triangular matrix, and the strictly lower triangular part of A is not referenced. If UPLO = ‘L’, the leading n-by-n lower triangular part of the array A contains the lower triangular matrix, and the strictly upper triangular part of A is not referenced.
inldaThe leading dimension of the matrix A. lda >= max(1,n).
outARFDouble precision array, dimension (n*(n+1)/2). On exit, the triangular matrix A in RFP format.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void strttf(
const char* transr,
const char* uplo,
const INT n,
const f32* restrict A,
const INT lda,
f32* restrict ARF,
INT* info
);
Functions
-
void dtrttf(const char *transr, const char *uplo, const INT n, const f64 *restrict A, const INT lda, f64 *restrict ARF, INT *info)#
DTRTTF copies a triangular matrix A from standard full format (TR) to rectangular full packed format (TF).
Parameters
intransr= ‘N’: ARF in Normal form is wanted; = ‘T’: ARF in Transpose form is wanted.
inuplo= ‘U’: Upper triangle of A is stored; = ‘L’: Lower triangle of A is stored.
innThe order of the matrix A. n >= 0.
inADouble precision array, dimension (lda,n). On entry, the triangular matrix A. If UPLO = ‘U’, the leading n-by-n upper triangular part of the array A contains the upper triangular matrix, and the strictly lower triangular part of A is not referenced. If UPLO = ‘L’, the leading n-by-n lower triangular part of the array A contains the lower triangular matrix, and the strictly upper triangular part of A is not referenced.
inldaThe leading dimension of the matrix A. lda >= max(1,n).
outARFDouble precision array, dimension (n*(n+1)/2). On exit, the triangular matrix A in RFP format.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void dtrttf(
const char* transr,
const char* uplo,
const INT n,
const f64* restrict A,
const INT lda,
f64* restrict ARF,
INT* info
);
Functions
-
void ctrttf(const char *transr, const char *uplo, const INT n, const c64 *restrict A, const INT lda, c64 *restrict ARF, INT *info)#
CTRTTF copies a triangular matrix A from standard full format (TR) to rectangular full packed format (TF).
Parameters
intransr= ‘N’: ARF in Normal mode is wanted; = ‘C’: ARF in Conjugate Transpose mode is wanted.
inuplo= ‘U’: Upper triangle of A is stored; = ‘L’: Lower triangle of A is stored.
innThe order of the matrix A. n >= 0.
inASingle complex array, dimension (lda,n). On entry, the triangular matrix A. If UPLO = ‘U’, the leading n-by-n upper triangular part of the array A contains the upper triangular matrix, and the strictly lower triangular part of A is not referenced. If UPLO = ‘L’, the leading n-by-n lower triangular part of the array A contains the lower triangular matrix, and the strictly upper triangular part of A is not referenced.
inldaThe leading dimension of the matrix A. lda >= max(1,n).
outARFSingle complex array, dimension (n*(n+1)/2). On exit, the triangular matrix A in RFP format.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void ctrttf(
const char* transr,
const char* uplo,
const INT n,
const c64* restrict A,
const INT lda,
c64* restrict ARF,
INT* info
);
Functions
-
void ztrttf(const char *transr, const char *uplo, const INT n, const c128 *restrict A, const INT lda, c128 *restrict ARF, INT *info)#
ZTRTTF copies a triangular matrix A from standard full format (TR) to rectangular full packed format (TF).
Parameters
intransr= ‘N’: ARF in Normal mode is wanted; = ‘C’: ARF in Conjugate Transpose mode is wanted.
inuplo= ‘U’: Upper triangle of A is stored; = ‘L’: Lower triangle of A is stored.
innThe order of the matrix A. n >= 0.
inADouble complex array, dimension (lda,n). On entry, the triangular matrix A. If UPLO = ‘U’, the leading n-by-n upper triangular part of the array A contains the upper triangular matrix, and the strictly lower triangular part of A is not referenced. If UPLO = ‘L’, the leading n-by-n lower triangular part of the array A contains the lower triangular matrix, and the strictly upper triangular part of A is not referenced.
inldaThe leading dimension of the matrix A. lda >= max(1,n).
outARFDouble complex array, dimension (n*(n+1)/2). On exit, the triangular matrix A in RFP format.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void ztrttf(
const char* transr,
const char* uplo,
const INT n,
const c128* restrict A,
const INT lda,
c128* restrict ARF,
INT* info
);