opale.matrix.solver
Class SolverJacobi

java.lang.Object
  |
  +--opale.matrix.solver.SolverJacobi
All Implemented Interfaces:
IterativeSolver, Solver

public class SolverJacobi
extends java.lang.Object
implements IterativeSolver

This class implements Jacobi solver according to the book "Analyse matricielle appliquée à l'art de l'ingénieur", Lascaux & Théodor, Ed. Masson.


Fields inherited from interface opale.matrix.IterativeSolver
MAXITER, PRECISION
 
Constructor Summary
SolverJacobi()
           
 
Method Summary
static void main(java.lang.String[] arg)
           
 void solve(Matrix A, DVect b, DVect x)
          Solve Ax=b.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SolverJacobi

public SolverJacobi()
Method Detail

solve

public void solve(Matrix A,
                  DVect b,
                  DVect x)
Solve Ax=b.
Specified by:
solve in interface Solver
Parameters:
Matrix - A.

main

public static void main(java.lang.String[] arg)