#include <SystemOfLinearEquationsSolver.h>
|
| double * | A |
| |
| double * | B |
| |
| int | m |
| |
| int | nrhs |
| |
| double * | XC |
| |
| SystemOfLinearEquationsSolver::SystemOfLinearEquationsSolver |
( |
int |
m, |
|
|
int |
nrhs, |
|
|
double * |
A, |
|
|
double * |
B |
|
) |
| |
| double * SystemOfLinearEquationsSolver::getSolution |
( |
| ) |
|
| void SystemOfLinearEquationsSolver::printMatrix |
( |
int |
m, |
|
|
int |
n, |
|
|
const double * |
A, |
|
|
int |
lda, |
|
|
const char * |
name |
|
) |
| |
| void SystemOfLinearEquationsSolver::solveSystemOfLinearEquations |
( |
| ) |
|
| double* SystemOfLinearEquationsSolver::A |
|
private |
| double* SystemOfLinearEquationsSolver::B |
|
private |
| int SystemOfLinearEquationsSolver::m |
|
private |
| int SystemOfLinearEquationsSolver::nrhs |
|
private |
| double* SystemOfLinearEquationsSolver::XC |
|
private |