Uses of Class
org.la4j.LinearAlgebra.SolverFactory
-
Packages that use LinearAlgebra.SolverFactory Package Description org.la4j -
-
Uses of LinearAlgebra.SolverFactory in org.la4j
Fields in org.la4j declared as LinearAlgebra.SolverFactory Modifier and Type Field Description static LinearAlgebra.SolverFactory
LinearAlgebra. FORWARD_BACK_SUBSTITUTION
References to the Forward-Back Substitution solver factory.static LinearAlgebra.SolverFactory
LinearAlgebra. GAUSSIAN
References to the Gaussian solver factory.static LinearAlgebra.SolverFactory
LinearAlgebra. JACOBI
References to the Jacobi solver factory.static LinearAlgebra.SolverFactory
LinearAlgebra. LEAST_SQUARES
References to the Least Squares solver factory.static LinearAlgebra.SolverFactory
LinearAlgebra. SEIDEL
References to the Seidel solver factory.static LinearAlgebra.SolverFactory
LinearAlgebra. SOLVER
References to the Smart solver factory.static LinearAlgebra.SolverFactory
LinearAlgebra. SQUARE_ROOT
References to the Square Root solver factory.static LinearAlgebra.SolverFactory
LinearAlgebra. SWEEP
References to the Sweep solver factory.Methods in org.la4j that return LinearAlgebra.SolverFactory Modifier and Type Method Description static LinearAlgebra.SolverFactory
LinearAlgebra.SolverFactory. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LinearAlgebra.SolverFactory[]
LinearAlgebra.SolverFactory. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.la4j with parameters of type LinearAlgebra.SolverFactory Modifier and Type Method Description LinearSystemSolver
Matrix. withSolver(LinearAlgebra.SolverFactory factory)
Creates a new solver by givenfactory
of this matrix.
-