pftrf#
Functions
-
void spftrf(const char *transr, const char *uplo, const INT n, f32 *restrict A, INT *info)#
SPFTRF computes the Cholesky factorization of a real symmetric positive definite matrix A.
The factorization has the form A = U**T * U, if UPLO = ‘U’, or A = L * L**T, if UPLO = ‘L’, where U is an upper triangular matrix and L is lower triangular.
This is the block version of the algorithm, calling Level 3 BLAS.
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 RFP A is stored; = ‘L’: Lower triangle of RFP A is stored.
innThe order of the matrix A. n >= 0.
inoutADouble precision array, dimension (n*(n+1)/2). On entry, the symmetric matrix A in RFP format. On exit, the factor U or L from the Cholesky factorization.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
> 0: if info = i, the leading principal minor of order i is not positive, and the factorization could not be completed.
void spftrf(
const char* transr,
const char* uplo,
const INT n,
f32* restrict A,
INT* info
);
Functions
-
void dpftrf(const char *transr, const char *uplo, const INT n, f64 *restrict A, INT *info)#
DPFTRF computes the Cholesky factorization of a real symmetric positive definite matrix A.
The factorization has the form A = U**T * U, if UPLO = ‘U’, or A = L * L**T, if UPLO = ‘L’, where U is an upper triangular matrix and L is lower triangular.
This is the block version of the algorithm, calling Level 3 BLAS.
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 RFP A is stored; = ‘L’: Lower triangle of RFP A is stored.
innThe order of the matrix A. n >= 0.
inoutADouble precision array, dimension (n*(n+1)/2). On entry, the symmetric matrix A in RFP format. On exit, the factor U or L from the Cholesky factorization.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
> 0: if info = i, the leading principal minor of order i is not positive, and the factorization could not be completed.
void dpftrf(
const char* transr,
const char* uplo,
const INT n,
f64* restrict A,
INT* info
);
Functions
-
void cpftrf(const char *transr, const char *uplo, const INT n, c64 *restrict A, INT *info)#
CPFTRF computes the Cholesky factorization of a complex Hermitian positive definite matrix A.
The factorization has the form A = U**H * U, if UPLO = ‘U’, or A = L * L**H, if UPLO = ‘L’, where U is an upper triangular matrix and L is lower triangular.
This is the block version of the algorithm, calling Level 3 BLAS.
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 RFP A is stored; = ‘L’: Lower triangle of RFP A is stored.
innThe order of the matrix A. n >= 0.
inoutASingle complex array, dimension (n*(n+1)/2). On entry, the Hermitian matrix A in RFP format. On exit, the factor U or L from the Cholesky factorization.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
> 0: if info = i, the leading principal minor of order i is not positive, and the factorization could not be completed.
void cpftrf(
const char* transr,
const char* uplo,
const INT n,
c64* restrict A,
INT* info
);
Functions
-
void zpftrf(const char *transr, const char *uplo, const INT n, c128 *restrict A, INT *info)#
ZPFTRF computes the Cholesky factorization of a complex Hermitian positive definite matrix A.
The factorization has the form A = U**H * U, if UPLO = ‘U’, or A = L * L**H, if UPLO = ‘L’, where U is an upper triangular matrix and L is lower triangular.
This is the block version of the algorithm, calling Level 3 BLAS.
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 RFP A is stored; = ‘L’: Lower triangle of RFP A is stored.
innThe order of the matrix A. n >= 0.
inoutADouble complex array, dimension (n*(n+1)/2). On entry, the Hermitian matrix A in RFP format. On exit, the factor U or L from the Cholesky factorization.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
> 0: if info = i, the leading principal minor of order i is not positive, and the factorization could not be completed.
void zpftrf(
const char* transr,
const char* uplo,
const INT n,
c128* restrict A,
INT* info
);