XLPack 6.1
C/C++ API Reference Manual
Loading...
Searching...
No Matches
Functions
D2a3. Solution of systems of linear equations (triangular matrices)

Functions

void _dtbcon (char norm, char uplo, char diag, int n, int kd, int ldab, double ab[], double *rcond, double work[], int iwork[], int *info)
 Condition number of a triangular band matrix
 
void _dtbtrs (char uplo, char trans, char diag, int n, int kd, int nrhs, int ldab, double ab[], int ldb, double b[], int *info)
 Solution to system of linear equations AX = B or ATX = B for a triangular band matrix
 
void _dtpcon (char norm, char uplo, char diag, int n, double ap[], double *rcond, double work[], int iwork[], int *info)
 Condition number of a triangular matrix in packed form
 
void _dtptri (char uplo, char diag, int n, double ap[], int *info)
 Inverse of a triangular matrix in packed form
 
void _dtptrs (char uplo, char trans, char diag, int n, int nrhs, double ap[], int ldb, double b[], int *info)
 Solution to system of linear equations AX = B or ATX = B for a triangular matrix in packed form
 
void _dtrcon (char norm, char uplo, char diag, int n, int lda, double a[], double *rcond, double work[], int iwork[], int *info)
 Condition number of a triangular matrix
 
void _dtrtri (char uplo, char diag, int n, int lda, double a[], int *info)
 Inverse of a triangular matrix
 
void _dtrtrs (char uplo, char trans, char diag, int n, int nrhs, int lda, double a[], int ldb, double b[], int *info)
 Solution to system of linear equations AX = B or ATX = B for a triangular matrix
 

Detailed Description

This is the group of D2a3. Solution of systems of linear equations (triangular matrices).