Package org.ojalgo.matrix.decomposition
Class LDL.ModifiedFactory<N extends Comparable<N>>
java.lang.Object
org.ojalgo.matrix.decomposition.LDL.ModifiedFactory<N>
- All Implemented Interfaces:
LDL.Factory<N>
,MatrixDecomposition.Factory<LDL<N>>
- Enclosing interface:
LDL<N extends Comparable<N>>
public static final class LDL.ModifiedFactory<N extends Comparable<N>>
extends Object
implements LDL.Factory<N>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionmake
(Structure2D typical) Will create a new decomposition instance suitable for matrices of the specified size.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.ojalgo.matrix.decomposition.LDL.Factory
modified
Methods inherited from interface org.ojalgo.matrix.decomposition.MatrixDecomposition.Factory
decompose, make, make
-
Field Details
-
myDelegate
-
myThreshold
-
-
Constructor Details
-
ModifiedFactory
ModifiedFactory(LDL.Factory<N> delegate, N threshold)
-
-
Method Details
-
make
Description copied from interface:MatrixDecomposition.Factory
Will create a new decomposition instance suitable for matrices of the specified size.To calculate the decomposition you then need to call the
MatrixDecomposition.Factory.decompose(Access2D.Collectable)
method.- Specified by:
make
in interfaceMatrixDecomposition.Factory<N extends Comparable<N>>
- Parameters:
typical
- A 2D structure of roughly the expected size with which this decomposition will be used.- Returns:
- A "decomposer" ready to decompose matrices.
-