Uses of Interface
org.ojalgo.matrix.task.InverterTask
Packages that use InverterTask
-
Uses of InverterTask in org.ojalgo.matrix.decomposition
Subinterfaces of InverterTask 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 InverterTaskModifier and TypeClassDescriptionfinal classQuasi-Definite LDL (QDLDL) sparse decomposition. -
Uses of InverterTask in org.ojalgo.matrix.task
Classes in org.ojalgo.matrix.task that implement InverterTaskMethods in org.ojalgo.matrix.task that return InverterTaskModifier and TypeMethodDescriptionInverterTask.Factory.make(int dim, boolean spd) InverterTask.Factory.make(MatrixStore<N> template) abstract InverterTask<N> InverterTask.Factory.make(Structure2D template, boolean symmetric, boolean positiveDefinite)