pbstf#
Functions
-
void spbstf(const char *uplo, const INT n, const INT kd, f32 *restrict AB, const INT ldab, INT *info)#
SPBSTF computes a split Cholesky factorization of a real symmetric positive definite band matrix A.
This routine is designed to be used in conjunction with SSBGST.
The factorization has the form A = S**T*S where S is a band matrix of the same bandwidth as A.
Parameters
inuplo= ‘U’: Upper triangle of A is stored = ‘L’: Lower triangle of A is stored
innThe order of the matrix A. n >= 0.
inkdThe number of super-diagonals (if uplo=’U’) or sub-diagonals (if uplo=’L’). kd >= 0.
inoutABOn entry, the banded matrix A. On exit, the factor S from A = S**T*S. Array of dimension (ldab, n).
inldabThe leading dimension of AB. ldab >= kd+1.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
> 0: if info = i, the matrix is not positive definite.
void spbstf(
const char* uplo,
const INT n,
const INT kd,
f32* restrict AB,
const INT ldab,
INT* info
);
Functions
-
void dpbstf(const char *uplo, const INT n, const INT kd, f64 *restrict AB, const INT ldab, INT *info)#
DPBSTF computes a split Cholesky factorization of a real symmetric positive definite band matrix A.
This routine is designed to be used in conjunction with DSBGST.
The factorization has the form A = S**T*S where S is a band matrix of the same bandwidth as A.
Parameters
inuplo= ‘U’: Upper triangle of A is stored = ‘L’: Lower triangle of A is stored
innThe order of the matrix A. n >= 0.
inkdThe number of super-diagonals (if uplo=’U’) or sub-diagonals (if uplo=’L’). kd >= 0.
inoutABOn entry, the banded matrix A. On exit, the factor S from A = S**T*S. Array of dimension (ldab, n).
inldabThe leading dimension of AB. ldab >= kd+1.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
> 0: if info = i, the matrix is not positive definite.
void dpbstf(
const char* uplo,
const INT n,
const INT kd,
f64* restrict AB,
const INT ldab,
INT* info
);
Functions
-
void cpbstf(const char *uplo, const INT n, const INT kd, c64 *restrict AB, const INT ldab, INT *info)#
CPBSTF computes a split Cholesky factorization of a complex Hermitian positive definite band matrix A.
This routine is designed to be used in conjunction with CHBGST.
The factorization has the form A = S**H*S where S is a band matrix of the same bandwidth as A.
Parameters
inuplo= ‘U’: Upper triangle of A is stored = ‘L’: Lower triangle of A is stored
innThe order of the matrix A. n >= 0.
inkdThe number of super-diagonals (if uplo=’U’) or sub-diagonals (if uplo=’L’). kd >= 0.
inoutABOn entry, the banded matrix A. On exit, the factor S from A = S**H*S. Array of dimension (ldab, n).
inldabThe leading dimension of AB. ldab >= kd+1.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
> 0: if info = i, the factorization could not be completed, because the updated element a(i,i) was negative; the matrix A is not positive definite.
void cpbstf(
const char* uplo,
const INT n,
const INT kd,
c64* restrict AB,
const INT ldab,
INT* info
);
Functions
-
void zpbstf(const char *uplo, const INT n, const INT kd, c128 *restrict AB, const INT ldab, INT *info)#
ZPBSTF computes a split Cholesky factorization of a complex Hermitian positive definite band matrix A.
This routine is designed to be used in conjunction with ZHBGST.
The factorization has the form A = S**H*S where S is a band matrix of the same bandwidth as A.
Parameters
inuplo= ‘U’: Upper triangle of A is stored = ‘L’: Lower triangle of A is stored
innThe order of the matrix A. n >= 0.
inkdThe number of super-diagonals (if uplo=’U’) or sub-diagonals (if uplo=’L’). kd >= 0.
inoutABOn entry, the banded matrix A. On exit, the factor S from A = S**H*S. Array of dimension (ldab, n).
inldabThe leading dimension of AB. ldab >= kd+1.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
> 0: if info = i, the factorization could not be completed, because the updated element a(i,i) was negative; the matrix A is not positive definite.
void zpbstf(
const char* uplo,
const INT n,
const INT kd,
c128* restrict AB,
const INT ldab,
INT* info
);