Home | About | FAQ | Install | Documentation | To Do | Download | Related Links |
#include "itsl.h"
Functions | |
ME_MATRIX * | itsl_jacobi_preconditioner (ME_MATRIX *M) |
Jacobi Preconditioner . | |
int | itsl_minres (const ME_MATRIX *A, const VECTOR *b, VECTOR *guess, const MEML_FLOAT eps) |
int | itsl_arnoldi (const ME_MATRIX *A, VECTOR *r, ME_MATRIX **H, ME_MATRIX **Q, MEML_INT const krylow_dim) |
int | itsl_least_square_solve_f (const ME_MATRIX *M, const VECTOR *b, VECTOR *result) |
void | itsl_gmres (const ME_MATRIX *A, const VECTOR *b, VECTOR *guess, const MEML_FLOAT boundary, const int krylov_dim) |
grmes without precondioner | |
void | itsl_gmres_jacobi (const ME_MATRIX *M, const VECTOR *f, VECTOR *guess, const MEML_FLOAT boundary, const int krylov_dim) |
grmes with jacobi precondioner |
|
The Arnoldi iteration for computing a Krylov subspace of the dimension krylow_dim |
|
grmes without precondioner
This function solves the linear equation system Ax=b, based on the grmes-algorithm.
|
|
grmes with jacobi precondioner
This function solves the linear equation system Ax=b, based on the grmes-algorithm.
|
|
Jacobi Preconditioner .
|
|
Computes the solution of a balance problem
|
|
|