Uses of Interface
org.apache.commons.math3.linear.DecompositionSolver
-
Packages that use DecompositionSolver Package Description org.apache.commons.math3.linear Linear algebra support. -
-
Uses of DecompositionSolver in org.apache.commons.math3.linear
Classes in org.apache.commons.math3.linear that implement DecompositionSolver Modifier and Type Class Description private static classCholeskyDecomposition.SolverSpecialized solver.private static classEigenDecomposition.SolverSpecialized solver.private static classLUDecomposition.SolverSpecialized solver.private static classQRDecomposition.SolverSpecialized solver.private static classRRQRDecomposition.SolverSpecialized solver.private static classSingularValueDecomposition.SolverSpecialized solver.Fields in org.apache.commons.math3.linear declared as DecompositionSolver Modifier and Type Field Description private DecompositionSolverRRQRDecomposition.Solver. upperUpper level solver.Methods in org.apache.commons.math3.linear that return DecompositionSolver Modifier and Type Method Description DecompositionSolverCholeskyDecomposition. getSolver()Get a solver for finding the A × X = B solution in least square sense.DecompositionSolverEigenDecomposition. getSolver()Gets a solver for finding the A × X = B solution in exact linear sense.DecompositionSolverLUDecomposition. getSolver()Get a solver for finding the A × X = B solution in exact linear sense.DecompositionSolverQRDecomposition. getSolver()Get a solver for finding the A × X = B solution in least square sense.DecompositionSolverRRQRDecomposition. getSolver()Get a solver for finding the A × X = B solution in least square sense.DecompositionSolverSingularValueDecomposition. getSolver()Get a solver for finding the A × X = B solution in least square sense.Constructors in org.apache.commons.math3.linear with parameters of type DecompositionSolver Constructor Description Solver(DecompositionSolver upper, RealMatrix p)Build a solver from decomposed matrix.
-