Uses of Interface
org.ojalgo.matrix.task.SolverTask
-
Packages that use SolverTask Package Description org.ojalgo.matrix org.ojalgo.matrix.decomposition org.ojalgo.matrix.task org.ojalgo.matrix.task.iterative org.ojalgo.optimisation.convex -
-
Uses of SolverTask in org.ojalgo.matrix
Methods in org.ojalgo.matrix that return SolverTask Modifier and Type Method Description (package private) abstract SolverTask<N>
BasicMatrix. newSolverTask(Structure2D templateBody, Structure2D templateRHS)
(package private) SolverTask<ComplexNumber>
MatrixC128. newSolverTask(Structure2D templateBody, Structure2D templateRHS)
(package private) SolverTask<Quaternion>
MatrixH256. newSolverTask(Structure2D templateBody, Structure2D templateRHS)
(package private) SolverTask<RationalNumber>
MatrixQ128. newSolverTask(Structure2D templateBody, Structure2D templateRHS)
(package private) SolverTask<java.lang.Double>
MatrixR032. newSolverTask(Structure2D templateBody, Structure2D templateRHS)
(package private) SolverTask<java.lang.Double>
MatrixR064. newSolverTask(Structure2D templateBody, Structure2D templateRHS)
(package private) SolverTask<Quadruple>
MatrixR128. newSolverTask(Structure2D templateBody, Structure2D templateRHS)
-
Uses of SolverTask in org.ojalgo.matrix.decomposition
Subinterfaces of SolverTask in org.ojalgo.matrix.decomposition Modifier and Type Interface Description interface
Cholesky<N extends java.lang.Comparable<N>>
Cholesky: [A] = [L][L]H (or [R]H[R])interface
LDL<N extends java.lang.Comparable<N>>
LDL: [A] = [L][D][L]H (or [R]H[D][R])interface
LDU<N extends java.lang.Comparable<N>>
LDU: [A] = [L][D][U] ( [PL][L][D][U][PU] )interface
LU<N extends java.lang.Comparable<N>>
LU: [A] = [L][U]static interface
MatrixDecomposition.Solver<N extends java.lang.Comparable<N>>
interface
QR<N extends java.lang.Comparable<N>>
QR: [A] = [Q][R] Decomposes [this] into [Q] and [R] where: [Q] is an orthogonal matrix (orthonormal columns).interface
SingularValue<N extends java.lang.Comparable<N>>
Singular Value: [A] = [U][D][V]T Decomposes [this] into [U], [D] and [V] where: [U] is an orthogonal matrix.Classes in org.ojalgo.matrix.decomposition that implement SolverTask Modifier and Type Class Description (package private) class
CholeskyDecomposition<N extends java.lang.Comparable<N>>
(package private) static class
CholeskyDecomposition.C128
(package private) static class
CholeskyDecomposition.H256
(package private) static class
CholeskyDecomposition.Q128
(package private) static class
CholeskyDecomposition.R064
(package private) static class
CholeskyDecomposition.R128
(package private) class
HermitianEvD<N extends java.lang.Comparable<N>>
Eigenvalues and eigenvectors of a real matrix.(package private) static class
HermitianEvD.C128
(package private) static class
HermitianEvD.H256
(package private) static class
HermitianEvD.Q128
(package private) static class
HermitianEvD.R064
(package private) static class
HermitianEvD.R128
(package private) class
LDLDecomposition<N extends java.lang.Comparable<N>>
(package private) static class
LDLDecomposition.C128
(package private) static class
LDLDecomposition.H256
(package private) static class
LDLDecomposition.Q128
(package private) static class
LDLDecomposition.R064
(package private) static class
LDLDecomposition.R128
(package private) class
LUDecomposition<N extends java.lang.Comparable<N>>
(package private) static class
LUDecomposition.C128
(package private) static class
LUDecomposition.H256
(package private) static class
LUDecomposition.Q128
(package private) static class
LUDecomposition.R064
(package private) static class
LUDecomposition.R128
(package private) class
QRDecomposition<N extends java.lang.Comparable<N>>
(package private) static class
QRDecomposition.C128
(package private) static class
QRDecomposition.H256
(package private) static class
QRDecomposition.Q128
(package private) static class
QRDecomposition.R064
(package private) static class
QRDecomposition.R128
(package private) class
RawCholesky
(package private) static class
RawEigenvalue.Symmetric
(package private) class
RawLU
(package private) class
RawQR
For an m-by-n matrix A with m >= n, the QR decomposition is an m-by-n orthogonal matrix Q and an n-by-n upper triangular matrix R so that A = Q*R.(package private) class
RawSingularValue
Singular Value Decomposition.(package private) class
SingularValueDecomposition<N extends java.lang.Comparable<N>>
(package private) static class
SingularValueDecomposition.C128
(package private) static class
SingularValueDecomposition.H256
(package private) static class
SingularValueDecomposition.Q128
(package private) static class
SingularValueDecomposition.R064
(package private) static class
SingularValueDecomposition.R128
-
Uses of SolverTask in org.ojalgo.matrix.task
Classes in org.ojalgo.matrix.task that implement SolverTask Modifier and Type Class Description (package private) class
AbstractSolver
Fields in org.ojalgo.matrix.task declared as SolverTask Modifier and Type Field Description (package private) static SolverTask<java.lang.Double>
AbstractSolver. FULL_1X1
(package private) static SolverTask<java.lang.Double>
AbstractSolver. FULL_2X2
(package private) static SolverTask<java.lang.Double>
AbstractSolver. FULL_3X3
(package private) static SolverTask<java.lang.Double>
AbstractSolver. FULL_4X4
(package private) static SolverTask<java.lang.Double>
AbstractSolver. FULL_5X5
(package private) static SolverTask<java.lang.Double>
AbstractSolver. LEAST_SQUARES
(package private) static SolverTask<java.lang.Double>
AbstractSolver. SYMMETRIC_2X2
(package private) static SolverTask<java.lang.Double>
AbstractSolver. SYMMETRIC_3X3
(package private) static SolverTask<java.lang.Double>
AbstractSolver. SYMMETRIC_4X4
(package private) static SolverTask<java.lang.Double>
AbstractSolver. SYMMETRIC_5X5
Methods in org.ojalgo.matrix.task that return SolverTask Modifier and Type Method Description SolverTask<N>
SolverTask.Factory. make(int numberOfEquations, int numberOfVariables, int numberOfSolutions, boolean symmetric, boolean positiveDefinite)
SolverTask<N>
SolverTask.Factory. make(MatrixStore<N> templateBody, MatrixStore<N> templateRHS)
abstract SolverTask<N>
SolverTask.Factory. make(Structure2D templateBody, Structure2D templateRHS, boolean symmetric, boolean positiveDefinite)
-
Uses of SolverTask in org.ojalgo.matrix.task.iterative
Classes in org.ojalgo.matrix.task.iterative that implement SolverTask Modifier and Type Class Description class
ConjugateGradientSolver
For solving [A][x]=[b] when [A] is symmetric and positive-definite.class
GaussSeidelSolver
For solving [A][x]=[b] where [A] has non-zero elements on the diagonal.class
IterativeSolverTask
For solving very large sparse equation systems – [A][x]=[b].class
JacobiSolver
For solving [A][x]=[b] where [A] has non-zero elements on the diagonal.(package private) class
KrylovSubspaceSolver
class
MutableSolver<D extends IterativeSolverTask & IterativeSolverTask.SparseDelegate>
Maintains a list ofEquation
:s and delegates to aIterativeSolverTask.SparseDelegate
.class
ParallelGaussSeidelSolver
Experimental parallelised version ofGaussSeidelSolver
.class
StationaryIterativeSolver
-
Uses of SolverTask in org.ojalgo.optimisation.convex
Classes in org.ojalgo.optimisation.convex that implement SolverTask Modifier and Type Class Description (package private) class
IterativeASS.SchurComplementSolver
The equation system body is the (negated) Schur complement (of the Q-matrix in the full KKT-system).
-