orgposada.nummethpos.matrixsolution
Class DirectMatrixSolver

java.lang.Object
  |
  +--orgposada.nummethpos.matrixsolution.MatrixSolver
        |
        +--orgposada.nummethpos.matrixsolution.DirectMatrixSolver
Direct Known Subclasses:
CroutSolver

public abstract class DirectMatrixSolver
extends MatrixSolver

Permite una interfaz uniforme entre los solvers de matrices.

Version:
2.1, 08/11/2001 public
Author:
Omar Posada Villarreal

Fields inherited from class orgposada.nummethpos.matrixsolution.MatrixSolver
found
 
Constructor Summary
DirectMatrixSolver()
           
 
Method Summary
abstract  double[] solve(MatrixDouble A, double[] b)
          Soluciona una matriz de forma directa de un sistema: "Ax = b".
 
Methods inherited from class orgposada.nummethpos.matrixsolution.MatrixSolver
wasFound
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Constructor Detail

DirectMatrixSolver

public DirectMatrixSolver()
Method Detail

solve

public abstract double[] solve(MatrixDouble A,
                               double[] b)
Soluciona una matriz de forma directa de un sistema: "Ax = b".
Parameters:
A - Se debe usar una matriz con una clase concreta.
b - Vector del lado derecho.