Package org.ojalgo.matrix.decomposition
Interface SingularValue.Factory<N extends Comparable<N>>
- All Superinterfaces:
MatrixDecomposition.Factory<SingularValue<N>>
- Enclosing interface:
SingularValue<N extends Comparable<N>>
public static interface SingularValue.Factory<N extends Comparable<N>>
extends MatrixDecomposition.Factory<SingularValue<N>>
-
Method Summary
Modifier and TypeMethodDescriptiondefault SingularValue
<N> make
(boolean fullSize) default SingularValue
<N> make
(Structure2D typical) Will create a new decomposition instance suitable for matrices of the specified size.make
(Structure2D typical, boolean fullSize) Methods inherited from interface org.ojalgo.matrix.decomposition.MatrixDecomposition.Factory
decompose, make, make
-
Method Details
-
make
-
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.
-
make
-