opale.matrix.solver
Class SolverCholesky
java.lang.Object
|
+--opale.matrix.solver.SolverCholesky
- All Implemented Interfaces:
- SymDecomposition, SymSolver
- public class SolverCholesky
- extends java.lang.Object
- implements SymSolver, SymDecomposition
This class implements Cholesky decomposition according to the book "Analyse matricielle appliquée à l'art de l'ingénieur", Lascaux & Théodor, Ed. Masson.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SolverCholesky
public SolverCholesky()
decomp
public void decomp(SymMatrix A)
- Description copied from interface:
SymDecomposition
- Decompose the matrix A.
- Specified by:
decomp
in interface SymDecomposition
solve
public void solve(SymMatrix A,
DVect b,
DVect x)
- Solve B tBx=b.
- Specified by:
solve
in interface SymSolver
- Parameters:
Matrix
- A, not used.
main
public static void main(java.lang.String[] arg)