Uses of Interface
org.la4j.linear.LinearSystemSolver
-
Packages that use LinearSystemSolver Package Description org.la4j org.la4j.linear -
-
Uses of LinearSystemSolver in org.la4j
Methods in org.la4j that return LinearSystemSolver Modifier and Type Method Description abstract LinearSystemSolver
LinearAlgebra.SolverFactory. create(Matrix matrix)
LinearSystemSolver
Matrix. withSolver(LinearAlgebra.SolverFactory factory)
Creates a new solver by givenfactory
of this matrix. -
Uses of LinearSystemSolver in org.la4j.linear
Classes in org.la4j.linear that implement LinearSystemSolver Modifier and Type Class Description class
AbstractSolver
class
ForwardBackSubstitutionSolver
class
GaussianSolver
This class represents Gaussian method for solving linear systems.class
JacobiSolver
This class represents Jacobi method for solving linear systems.class
LeastNormSolver
This class provides solution of "fat" linear system with least euclidean norm.class
LeastSquaresSolver
class
SeidelSolver
This class represents Seidel method for solving linear systems.class
SquareRootSolver
This class represents Square Root method for solving linear systems.class
SweepSolver
This class represents Sweep (or Tridiagonal matrix, or Thomas) method for solving linear systems.
-