Module ojalgo
Package org.ojalgo.structure
Interface Operate2D<N extends Comparable<N>,P extends Operate2D<N,P>>
- All Superinterfaces:
Structure1D,Structure2D
- All Known Subinterfaces:
DecompositionStore<N>,ElementsSupplier<N>,MatrixStore<N>,PhysicalStore<N>
- All Known Implementing Classes:
BasicMatrix,ColumnsSupplier,DiagonalStore,GenericStore,ImageData,MatrixC128,MatrixH256,MatrixQ128,MatrixR032,MatrixR064,MatrixR128,R032Store,R064CSC,R064CSR,R064Store,RawStore,RowsSupplier,SparseStore
To be implemented by classes that are not directly mutable themselves, but that can operate on the elements
of some internal/future 2D data structure – similar to streams in some sense.
- Element-wise operations.
- The methods always return a new instance of the implementing class.
- The size or shape of the internal/future data does not change with these operations.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.ojalgo.structure.Structure1D
Structure1D.BasicMapper<T>, Structure1D.IndexMapper<T>, Structure1D.IntIndex, Structure1D.LongIndex, Structure1D.LoopCallbackNested 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
Modifier and TypeMethodDescriptiondefault PonAll(double left, BinaryFunction<N> operator) default PonAll(N left, BinaryFunction<N> operator) default PonAll(BinaryFunction<N> operator, double right) default PonAll(BinaryFunction<N> operator, N right) default PonAll(ParameterFunction<N> operator, int parameter) onAll(UnaryFunction<N> operator) onAny(Transformation2D<N> operator) onColumns(BinaryFunction<N> operator, Access1D<N> right) onColumns(Access1D<N> left, BinaryFunction<N> operator) default PonCompatible(BinaryFunction<N> operator, Access2D<N> right) default PonCompatible(Access2D<N> left, BinaryFunction<N> operator) onMatching(BinaryFunction<N> operator, Access2D<N> right) onMatching(Access2D<N> left, BinaryFunction<N> operator) onRows(BinaryFunction<N> operator, Access1D<N> right) onRows(Access1D<N> left, BinaryFunction<N> operator) 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 Details
-
onAll
-
onAll
-
onAll
-
onAll
-
onAll
-
onAll
-
onAny
-
onColumns
-
onColumns
-
onCompatible
-
onCompatible
-
onMatching
-
onMatching
-
onRows
-
onRows
-