Method | Description | |
---|---|---|
GMRESkSolver ( MatrixValue A ) : System |
Creates the class for a GMRES(k) solver.
|
|
GMRESkSolver ( MatrixValue A, bool restart ) : System |
Creates the class for a GMRES(k) solver.
|
|
Solve ( MatrixValue b ) : MatrixValue |
Solves the system of linear equations.
|
Method | Description | |
---|---|---|
Rotate ( int j ) : void |
public GMRESkSolver ( MatrixValue A ) : System | ||
A | MatrixValue | The matrix A to solve. |
return | System |
public GMRESkSolver ( MatrixValue A, bool restart ) : System | ||
A | MatrixValue | The matrix A to consider as system of linear equations. |
restart | bool | Should restarts be executed? |
return | System |
public Solve ( MatrixValue b ) : MatrixValue | ||
b | MatrixValue | The vector b in A * x = b. |
return | MatrixValue |