Interface MatrixSolver
-
- All Superinterfaces:
Solver
- All Known Implementing Classes:
AbstractMatrixSolver,MicadoSolver,SvdSolver
public interface MatrixSolver extends Solver
This is the interface for a solver class that is based on solving a matrix-least-square algorithm.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MatrixSolverResultsolve(Jama.Matrix matrix, Jama.Matrix inVector, Jama.Matrix inVectorErrors)shall give the result: outVector = matrix^(-1) * inVector;
-
-
-
Method Detail
-
solve
MatrixSolverResult solve(Jama.Matrix matrix, Jama.Matrix inVector, Jama.Matrix inVectorErrors) throws SolverException
shall give the result: outVector = matrix^(-1) * inVector;- Parameters:
matrix-inVector-inVectorErrors-- Returns:
- the result
- Throws:
SolverException
-
-