![]() |
XLPack 7.0
XLPack Numerical Library (C API) Reference Manual
|
Functions | |
void | dgbsv (int n, int kl, int ku, int nrhs, int ldab, double ab[], int ipiv[], int ldb, double b[], int *info) |
(Simple driver) Solution to system of linear equations AX = B for a general band matrix | |
void | dgbsvx (char fact, char trans, int n, int kl, int ku, int nrhs, int ldab, double ab[], int ldafb, double afb[], int ipiv[], char *equed, double r[], double c[], int ldb, double b[], int ldx, double x[], double *rcond, double ferr[], double berr[], double work[], int iwork[], int *info) |
(Expert driver) Solution to system of linear equations AX = B for a general band matrix | |
void | dgesv (int n, int nrhs, int lda, double a[], int ipiv[], int ldb, double b[], int *info) |
(Simple driver) Solution to system of linear equations AX = B for a general matrix | |
void | dgesvx (char fact, char trans, int n, int nrhs, int lda, double a[], int ldaf, double af[], int ipiv[], char *equed, double r[], double c[], int ldb, double b[], int ldx, double x[], double *rcond, double ferr[], double berr[], double work[], int iwork[], int *info) |
(Expert driver) Solution to system of linear equations AX = B for a general matrix | |
void | dgtsv (int n, int nrhs, double dl[], double d[], double du[], int ldb, double b[], int *info) |
(Simple driver) Solution to system of linear equations AX = B for a general tridiagonal matrix | |
void | dgtsvx (char fact, char trans, int n, int nrhs, double dl[], double d[], double du[], double dlf[], double df[], double duf[], double du2[], int ipiv[], int ldb, double b[], int ldx, double x[], double *rcond, double ferr[], double berr[], double work[], int iwork[], int *info) |
(Expert driver) Solution to system of linear equations AX = B for a general tridiagonal matrix | |
void | dsgesv (int n, int nrhs, int lda, double a[], int ipiv[], int ldb, double b[], int ldx, double x[], double work[], float swork[], int *iter, int *info) |
(Simple driver) Solution to system of linear equations AX = B for a general matrix (mixed precision with iterative refinement) | |
This is the group of D2a. Solution of systems of linear equations (general matrices) - Driver routines.