Uses of Interface
org.ojalgo.matrix.Provider2D.Solution
Packages that use Provider2D.Solution
-
Uses of Provider2D.Solution in org.ojalgo.matrix
Classes in org.ojalgo.matrix that implement Provider2D.SolutionModifier and TypeClassDescriptionclassBasicMatrix<N extends Comparable<N>,M extends BasicMatrix<N, M>> A base class for, easy to use, immutable (thread safe) matrices with a rich feature set.final classA matrix (linear algebra) with ComplexNumberSet.Celements, implemented using dual 64-bit double values. (2 x 64 = 128)final classA matrix (linear algebra) with QuaternionNumberSet.Helements, implemented using four 64-bit double values. (4 x 64 = 256)final classA matrix (linear algebra) with RationalNumberSet.Qelements, implemented using dual 64-bit long values. (2 x 64 = 128)final classA matrix (linear algebra) with RealNumberSet.Relements, approximated by 32-bit float.final classA matrix (linear algebra) with RealNumberSet.Relements, approximated by 64-bit double.final classA matrix (linear algebra) with RealNumberSet.Relements, approximated by 128-bit floating-point values (implemented using dual 64-bit double). (2 x 64 = 128) -
Uses of Provider2D.Solution in org.ojalgo.matrix.decomposition
Subinterfaces of Provider2D.Solution in org.ojalgo.matrix.decompositionModifier and TypeInterfaceDescriptioninterfaceCholesky<N extends Comparable<N>>Cholesky: [A] = [L][L]H (or [R]H[R])static interfaceEigenvalue.Spectral<N extends Comparable<N>>“Spectral decomposition” refers specifically to the orthogonal/unitary eigen-decomposition of a normal matrix (most commonly Hermitian / symmetric).interfaceLDL<N extends Comparable<N>>LDL: [A] = [L][D][L]H (or [R]H[D][R])interfaceLDU<N extends Comparable<N>>LDU: [A] = [L][D][U] ( [PL][L][D][U][PU] )interfaceLU<N extends Comparable<N>>LU: [A] = [L][U]static interfaceMatrixDecomposition.Solver<N extends Comparable<N>>interfaceQR<N extends Comparable<N>>QR: [A] = [Q][R] Decomposes [this] into [Q] and [R] where: [Q] is an orthogonal matrix (orthonormal columns).interfaceSingularValue<N extends Comparable<N>>Singular Value: [A] = [U][S][V]T Decomposes [this] into [U], [S] and [V] where: [U] is an orthogonal matrix.Classes in org.ojalgo.matrix.decomposition that implement Provider2D.SolutionModifier and TypeClassDescriptionfinal classQuasi-Definite LDL (QDLDL) sparse decomposition.Methods in org.ojalgo.matrix.decomposition that return Provider2D.SolutionModifier and TypeMethodDescriptiondefault Provider2D.Solution<Optional<MatrixStore<N>>> MatrixDecomposition.Solver.toSolutionProvider(ElementsSupplier<N> body, Supplier<MatrixStore<N>> alternativeBodySupplier, Access2D<?> rhs) -
Uses of Provider2D.Solution in org.ojalgo.matrix.task
Methods in org.ojalgo.matrix.task that return Provider2D.SolutionModifier and TypeMethodDescriptiondefault Provider2D.Solution<Optional<MatrixStore<N>>> SolverTask.toSolutionProvider(ElementsSupplier<N> body, Supplier<MatrixStore<N>> alternativeBodySupplier, Access2D<?> rhs)