Package | Description |
---|---|
org.apache.commons.math3.linear |
Linear algebra support.
|
Modifier and Type | Class and Description |
---|---|
private static class |
CholeskyDecomposition.Solver
Specialized solver.
|
private static class |
EigenDecomposition.Solver
Specialized solver.
|
private static class |
LUDecomposition.Solver
Specialized solver.
|
private static class |
QRDecomposition.Solver
Specialized solver.
|
private static class |
RRQRDecomposition.Solver
Specialized solver.
|
private static class |
SingularValueDecomposition.Solver
Specialized solver.
|
Modifier and Type | Field and Description |
---|---|
private DecompositionSolver |
RRQRDecomposition.Solver.upper
Upper level solver.
|
Modifier and Type | Method and Description |
---|---|
DecompositionSolver |
EigenDecomposition.getSolver()
Gets a solver for finding the A × X = B solution in exact
linear sense.
|
DecompositionSolver |
SingularValueDecomposition.getSolver()
Get a solver for finding the A × X = B solution in least square sense.
|
DecompositionSolver |
LUDecomposition.getSolver()
Get a solver for finding the A × X = B solution in exact linear
sense.
|
DecompositionSolver |
RRQRDecomposition.getSolver()
Get a solver for finding the A × X = B solution in least square sense.
|
DecompositionSolver |
QRDecomposition.getSolver()
Get a solver for finding the A × X = B solution in least square sense.
|
DecompositionSolver |
CholeskyDecomposition.getSolver()
Get a solver for finding the A × X = B solution in least square sense.
|
Constructor and Description |
---|
Solver(DecompositionSolver upper,
RealMatrix p)
Build a solver from decomposed matrix.
|