public interface LinearSystemSolver extends Serializable
Modifier and Type | Method and Description |
---|---|
boolean |
applicableTo(Matrix matrix)
Checks whether this solver applicable to given
matrix or not. |
int |
equations()
Returns the number of equations in this solver.
|
Matrix |
self()
Returns the self matrix of the solver.
|
Vector |
solve(Vector b)
Solves the system A*x = b.
|
int |
unknowns()
Returns the number os unknowns in this solver.
|
Matrix self()
int unknowns()
int equations()
boolean applicableTo(Matrix matrix)
matrix
or not.matrix
- Copyright © 2015. All rights reserved.