tfttr#
Functions
-
void stfttr(const char *transr, const char *uplo, const INT n, const f32 *restrict ARF, f32 *restrict A, const INT lda, INT *info)#
STFTTR copies a triangular matrix A from rectangular full packed format (TF) to standard full format (TR).
Parameters
intransr= ‘N’: ARF is in Normal format; = ‘T’: ARF is in Transpose format.
inuplo= ‘U’: A is upper triangular; = ‘L’: A is lower triangular.
innThe order of the matrices ARF and A. n >= 0.
inARFDouble precision array, dimension (n*(n+1)/2). On entry, the upper (if UPLO = ‘U’) or lower (if UPLO = ‘L’) matrix A in RFP format. See the “Notes” below for more details.
outADouble precision array, dimension (lda,n) On exit, 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 array A. lda >= max(1,n).
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void stfttr(
const char* transr,
const char* uplo,
const INT n,
const f32* restrict ARF,
f32* restrict A,
const INT lda,
INT* info
);
Functions
-
void dtfttr(const char *transr, const char *uplo, const INT n, const f64 *restrict ARF, f64 *restrict A, const INT lda, INT *info)#
DTFTTR copies a triangular matrix A from rectangular full packed format (TF) to standard full format (TR).
Parameters
intransr= ‘N’: ARF is in Normal format; = ‘T’: ARF is in Transpose format.
inuplo= ‘U’: A is upper triangular; = ‘L’: A is lower triangular.
innThe order of the matrices ARF and A. n >= 0.
inARFDouble precision array, dimension (n*(n+1)/2). On entry, the upper (if UPLO = ‘U’) or lower (if UPLO = ‘L’) matrix A in RFP format. See the “Notes” below for more details.
outADouble precision array, dimension (lda,n) On exit, 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 array A. lda >= max(1,n).
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void dtfttr(
const char* transr,
const char* uplo,
const INT n,
const f64* restrict ARF,
f64* restrict A,
const INT lda,
INT* info
);
Functions
-
void ctfttr(const char *transr, const char *uplo, const INT n, const c64 *restrict ARF, c64 *restrict A, const INT lda, INT *info)#
CTFTTR copies a triangular matrix A from rectangular full packed format (TF) to standard full format (TR).
Parameters
intransr= ‘N’: ARF is in Normal format; = ‘C’: ARF is in Conjugate-transpose format.
inuplo= ‘U’: A is upper triangular; = ‘L’: A is lower triangular.
innThe order of the matrices ARF and A. n >= 0.
inARFSingle complex array, dimension (n*(n+1)/2). On entry, the upper (if UPLO = ‘U’) or lower (if UPLO = ‘L’) matrix A in RFP format. See the “Notes” below for more details.
outASingle complex array, dimension (lda,n) On exit, 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 array A. lda >= max(1,n).
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void ctfttr(
const char* transr,
const char* uplo,
const INT n,
const c64* restrict ARF,
c64* restrict A,
const INT lda,
INT* info
);
Functions
-
void ztfttr(const char *transr, const char *uplo, const INT n, const c128 *restrict ARF, c128 *restrict A, const INT lda, INT *info)#
ZTFTTR copies a triangular matrix A from rectangular full packed format (TF) to standard full format (TR).
Parameters
intransr= ‘N’: ARF is in Normal format; = ‘C’: ARF is in Conjugate-transpose format.
inuplo= ‘U’: A is upper triangular; = ‘L’: A is lower triangular.
innThe order of the matrices ARF and A. n >= 0.
inARFDouble complex array, dimension (n*(n+1)/2). On entry, the upper (if UPLO = ‘U’) or lower (if UPLO = ‘L’) matrix A in RFP format. See the “Notes” below for more details.
outADouble complex array, dimension (lda,n) On exit, 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 array A. lda >= max(1,n).
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void ztfttr(
const char* transr,
const char* uplo,
const INT n,
const c128* restrict ARF,
c128* restrict A,
const INT lda,
INT* info
);