pftri#
Functions
-
void spftri(const char *transr, const char *uplo, const INT n, f32 *restrict A, INT *info)#
SPFTRI computes the inverse of a (real) symmetric positive definite matrix A using the Cholesky factorization A = U**T*U or A = L*L**T computed by SPFTRF.
Parameters
intransr= ‘N’: The Normal TRANSR of RFP A is stored; = ‘T’: The Transpose TRANSR of RFP A is stored.
inuplo= ‘U’: Upper triangle of A is stored; = ‘L’: Lower triangle of A is stored.
innThe order of the matrix A. n >= 0.
inoutADouble precision array, dimension (n*(n+1)/2). On entry, the Cholesky factor in RFP format. On exit, the inverse of the original matrix.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
> 0: if info = i, the (i,i) element of the factor is zero
void spftri(
const char* transr,
const char* uplo,
const INT n,
f32* restrict A,
INT* info
);
Functions
-
void dpftri(const char *transr, const char *uplo, const INT n, f64 *restrict A, INT *info)#
DPFTRI computes the inverse of a (real) symmetric positive definite matrix A using the Cholesky factorization A = U**T*U or A = L*L**T computed by DPFTRF.
Parameters
intransr= ‘N’: The Normal TRANSR of RFP A is stored; = ‘T’: The Transpose TRANSR of RFP A is stored.
inuplo= ‘U’: Upper triangle of A is stored; = ‘L’: Lower triangle of A is stored.
innThe order of the matrix A. n >= 0.
inoutADouble precision array, dimension (n*(n+1)/2). On entry, the Cholesky factor in RFP format. On exit, the inverse of the original matrix.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
> 0: if info = i, the (i,i) element of the factor is zero
void dpftri(
const char* transr,
const char* uplo,
const INT n,
f64* restrict A,
INT* info
);
Functions
-
void cpftri(const char *transr, const char *uplo, const INT n, c64 *restrict A, INT *info)#
CPFTRI computes the inverse of a complex Hermitian positive definite matrix A using the Cholesky factorization A = U**H*U or A = L*L**H computed by CPFTRF.
Parameters
intransr= ‘N’: The Normal TRANSR of RFP A is stored; = ‘C’: The Conjugate-transpose TRANSR of RFP A is stored.
inuplo= ‘U’: Upper triangle of A is stored; = ‘L’: Lower triangle of A is stored.
innThe order of the matrix A. n >= 0.
inoutASingle complex array, dimension (n*(n+1)/2). On entry, the Cholesky factor in RFP format. On exit, the inverse of the original matrix.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
> 0: if info = i, the (i,i) element of the factor is zero
void cpftri(
const char* transr,
const char* uplo,
const INT n,
c64* restrict A,
INT* info
);
Functions
-
void zpftri(const char *transr, const char *uplo, const INT n, c128 *restrict A, INT *info)#
ZPFTRI computes the inverse of a complex Hermitian positive definite matrix A using the Cholesky factorization A = U**H*U or A = L*L**H computed by ZPFTRF.
Parameters
intransr= ‘N’: The Normal TRANSR of RFP A is stored; = ‘C’: The Conjugate-transpose TRANSR of RFP A is stored.
inuplo= ‘U’: Upper triangle of A is stored; = ‘L’: Lower triangle of A is stored.
innThe order of the matrix A. n >= 0.
inoutADouble complex array, dimension (n*(n+1)/2). On entry, the Cholesky factor in RFP format. On exit, the inverse of the original matrix.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
> 0: if info = i, the (i,i) element of the factor is zero
void zpftri(
const char* transr,
const char* uplo,
const INT n,
c128* restrict A,
INT* info
);