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