tptri#
Functions
-
void stptri(const char *uplo, const char *diag, const INT n, f32 *restrict AP, INT *info)#
STPTRI computes the inverse of a real upper or lower triangular matrix A stored in packed format.
Parameters
inuplo= ‘U’: A is upper triangular; = ‘L’: A is lower triangular.
indiag= ‘N’: A is non-unit triangular; = ‘U’: A is unit triangular.
innThe order of the matrix A. n >= 0.
inoutAPOn entry, the upper or lower triangular matrix A, stored columnwise in a linear array. On exit, the (triangular) inverse of the original matrix, in the same packed storage format. Array of dimension (n*(n+1)/2).
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
> 0: if info = i, A(i,i) is exactly zero. The triangular matrix is singular and its inverse cannot be computed.
void stptri(
const char* uplo,
const char* diag,
const INT n,
f32* restrict AP,
INT* info
);
Functions
-
void dtptri(const char *uplo, const char *diag, const INT n, f64 *restrict AP, INT *info)#
DTPTRI computes the inverse of a real upper or lower triangular matrix A stored in packed format.
Parameters
inuplo= ‘U’: A is upper triangular; = ‘L’: A is lower triangular.
indiag= ‘N’: A is non-unit triangular; = ‘U’: A is unit triangular.
innThe order of the matrix A. n >= 0.
inoutAPOn entry, the upper or lower triangular matrix A, stored columnwise in a linear array. On exit, the (triangular) inverse of the original matrix, in the same packed storage format. Array of dimension (n*(n+1)/2).
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
> 0: if info = i, A(i,i) is exactly zero. The triangular matrix is singular and its inverse cannot be computed.
void dtptri(
const char* uplo,
const char* diag,
const INT n,
f64* restrict AP,
INT* info
);
Functions
-
void ctptri(const char *uplo, const char *diag, const INT n, c64 *restrict AP, INT *info)#
CTPTRI computes the inverse of a complex upper or lower triangular matrix A stored in packed format.
Parameters
inuplo= ‘U’: A is upper triangular; = ‘L’: A is lower triangular.
indiag= ‘N’: A is non-unit triangular; = ‘U’: A is unit triangular.
innThe order of the matrix A. n >= 0.
inoutAPOn entry, the upper or lower triangular matrix A, stored columnwise in a linear array. On exit, the (triangular) inverse of the original matrix, in the same packed storage format. Array of dimension (n*(n+1)/2).
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
> 0: if info = i, A(i,i) is exactly zero. The triangular matrix is singular and its inverse cannot be computed.
void ctptri(
const char* uplo,
const char* diag,
const INT n,
c64* restrict AP,
INT* info
);
Functions
-
void ztptri(const char *uplo, const char *diag, const INT n, c128 *restrict AP, INT *info)#
ZTPTRI computes the inverse of a complex upper or lower triangular matrix A stored in packed format.
Parameters
inuplo= ‘U’: A is upper triangular; = ‘L’: A is lower triangular.
indiag= ‘N’: A is non-unit triangular; = ‘U’: A is unit triangular.
innThe order of the matrix A. n >= 0.
inoutAPOn entry, the upper or lower triangular matrix A, stored columnwise in a linear array. On exit, the (triangular) inverse of the original matrix, in the same packed storage format. Array of dimension (n*(n+1)/2).
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
> 0: if info = i, A(i,i) is exactly zero. The triangular matrix is singular and its inverse cannot be computed.
void ztptri(
const char* uplo,
const char* diag,
const INT n,
c128* restrict AP,
INT* info
);