![]() |
Project
|
#include <SymMatrixSolver.h>
Public Member Functions | |
SymMatrixSolver (int N, int M) | |
double & | A (int i, int j) |
access to A elements | |
double & | B (int i, int j) |
access to B elements | |
void | solve () |
void | print () |
Static Public Member Functions | |
static int | test (bool prn=0) |
Test the class functionality. Returns 1 when ok, 0 when not ok. | |
Linear Equation Solver for a symmetric positive-definite matrix A[n x n].
A[n x n] * X [n x m] = B[n x m]
A elements are stored in the upper triangle of A. Thus A(i,j) and A(j,i) access the same element.
Definition at line 36 of file SymMatrixSolver.h.
Definition at line 39 of file SymMatrixSolver.h.
access to A elements
Definition at line 46 of file SymMatrixSolver.h.
access to B elements
Definition at line 54 of file SymMatrixSolver.h.
void SymMatrixSolver::print | ( | ) |
Definition at line 64 of file SymMatrixSolver.cxx.
void SymMatrixSolver::solve | ( | ) |
Definition at line 28 of file SymMatrixSolver.cxx.
|
static |
Test the class functionality. Returns 1 when ok, 0 when not ok.
Definition at line 79 of file SymMatrixSolver.cxx.