Package org.ojalgo.structure
Interface Structure2D.Reshapable
-
- All Superinterfaces:
Structure1D
,Structure2D
- All Known Implementing Classes:
Array2D
- Enclosing interface:
- Structure2D
public static interface Structure2D.Reshapable extends Structure2D
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.ojalgo.structure.Structure1D
Structure1D.BasicMapper<T>, Structure1D.IndexMapper<T>, Structure1D.IntIndex, Structure1D.LongIndex, Structure1D.LoopCallback
-
Nested classes/interfaces inherited from interface org.ojalgo.structure.Structure2D
Structure2D.IntRowColumn, Structure2D.Logical<S extends Structure2D,B extends Structure2D.Logical<S,B>>, Structure2D.LongRowColumn, Structure2D.ReducibleTo1D<R extends Structure1D>, Structure2D.Reshapable, Structure2D.RowColumnKey<R,C>, Structure2D.RowColumnMapper<R,C>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Structure1D
flatten()
Flattens this to a 1D structure.Structure2D
reshape(long rows, long columns)
-
Methods inherited from interface org.ojalgo.structure.Structure2D
count, countColumns, countRows, firstInColumn, firstInRow, getColDim, getMaxDim, getMinDim, getRowDim, isEmpty, isFat, isScalar, isSquare, isTall, isVector, limitOfColumn, limitOfRow, size
-
-
-
-
Method Detail
-
flatten
Structure1D flatten()
Flattens this to a 1D structure. This operation is largely redundant in ojAlgo as anything 2D is also/simultaneously 1D.
-
reshape
Structure2D reshape(long rows, long columns)
-
-