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 Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface LDL.Factory
modifiedMethods inherited from interface 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.FactoryWill 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:
makein 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.
-