Uses of Class
org.ojalgo.function.aggregator.Aggregator
-
Packages that use Aggregator Package Description org.ojalgo.array org.ojalgo.function.aggregator org.ojalgo.matrix org.ojalgo.matrix.store org.ojalgo.structure -
-
Uses of Aggregator in org.ojalgo.array
Methods in org.ojalgo.array with parameters of type Aggregator Modifier and Type Method Description N
Array2D. aggregateColumn(long row, long col, Aggregator aggregator)
N
Array2D. aggregateDiagonal(long row, long col, Aggregator aggregator)
N
Array1D. aggregateRange(long first, long limit, Aggregator aggregator)
N
Array2D. aggregateRange(long first, long limit, Aggregator aggregator)
N
ArrayAnyD. aggregateRange(long first, long limit, Aggregator aggregator)
N
BasicArray. aggregateRange(long first, long limit, Aggregator aggregator)
N
NumberList. aggregateRange(long first, long limit, Aggregator aggregator)
N
Array2D. aggregateRow(long row, long col, Aggregator aggregator)
N
ArrayAnyD. aggregateSet(int dimension, long dimensionalIndex, Aggregator aggregator)
N
ArrayAnyD. aggregateSet(long[] initial, int dimension, Aggregator aggregator)
Array2D<N>
ArrayAnyD. reduce(int rowDim, int colDim, Aggregator aggregator)
Array1D<N>
ArrayAnyD. reduce(int dimension, Aggregator aggregator)
Array1D<N>
Array2D. reduceColumns(Aggregator aggregator)
Array1D<N>
Array2D. reduceRows(Aggregator aggregator)
-
Uses of Aggregator in org.ojalgo.function.aggregator
Methods in org.ojalgo.function.aggregator that return Aggregator Modifier and Type Method Description static Aggregator
Aggregator. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Aggregator[]
Aggregator. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.ojalgo.function.aggregator with parameters of type Aggregator Modifier and Type Method Description AggregatorFunction<N>
AggregatorSet. get(Aggregator aggregator)
-
Uses of Aggregator in org.ojalgo.matrix
Methods in org.ojalgo.matrix with parameters of type Aggregator Modifier and Type Method Description N
BasicMatrix. aggregateColumn(long row, long col, Aggregator aggregator)
N
BasicMatrix. aggregateDiagonal(long row, long col, Aggregator aggregator)
N
BasicMatrix. aggregateRange(long first, long limit, Aggregator aggregator)
N
BasicMatrix. aggregateRow(long row, long col, Aggregator aggregator)
M
BasicMatrix. reduceColumns(Aggregator aggregator)
M
BasicMatrix. reduceRows(Aggregator aggregator)
-
Uses of Aggregator in org.ojalgo.matrix.store
Fields in org.ojalgo.matrix.store declared as Aggregator Modifier and Type Field Description private Aggregator
MatrixPipeline.ColumnsReducer. myAggregator
private Aggregator
MatrixPipeline.RowsReducer. myAggregator
Methods in org.ojalgo.matrix.store with parameters of type Aggregator Modifier and Type Method Description default N
MatrixStore. aggregateAll(Aggregator aggregator)
java.lang.Double
RawStore. aggregateAll(Aggregator aggregator)
default N
MatrixStore. aggregateColumn(long row, long col, Aggregator aggregator)
java.lang.Double
R032Store. aggregateColumn(long row, long col, Aggregator aggregator)
java.lang.Double
R032Store. aggregateColumn(long col, Aggregator aggregator)
N
TransposedStore. aggregateColumn(long col, Aggregator aggregator)
default N
MatrixStore. aggregateDiagonal(long row, long col, Aggregator aggregator)
java.lang.Double
R032Store. aggregateDiagonal(long row, long col, Aggregator aggregator)
java.lang.Double
R032Store. aggregateDiagonal(Aggregator aggregator)
default N
MatrixStore. aggregateRange(long first, long limit, Aggregator aggregator)
java.lang.Double
R032Store. aggregateRange(long first, long limit, Aggregator aggregator)
default N
MatrixStore. aggregateRow(long row, long col, Aggregator aggregator)
java.lang.Double
R032Store. aggregateRow(long row, long col, Aggregator aggregator)
java.lang.Double
R032Store. aggregateRow(long row, Aggregator aggregator)
N
TransposedStore. aggregateRow(long row, Aggregator aggregator)
default ElementsSupplier<N>
MatrixStore. reduceColumns(Aggregator aggregator)
void
R032Store. reduceColumns(Aggregator aggregator, Mutate1D receiver)
void
SparseStore. reduceColumns(Aggregator aggregator, Mutate1D receiver)
default ElementsSupplier<N>
MatrixStore. reduceRows(Aggregator aggregator)
void
R032Store. reduceRows(Aggregator aggregator, Mutate1D receiver)
void
SparseStore. reduceRows(Aggregator aggregator, Mutate1D receiver)
Constructors in org.ojalgo.matrix.store with parameters of type Aggregator Constructor Description ColumnsReducer(MatrixStore<N> base, Aggregator aggregator)
RowsReducer(MatrixStore<N> base, Aggregator aggregator)
-
Uses of Aggregator in org.ojalgo.structure
Methods in org.ojalgo.structure with parameters of type Aggregator Modifier and Type Method Description default N
Access1D.Aggregatable. aggregateAll(Aggregator aggregator)
N
Access2D.Aggregatable. aggregateColumn(long row, long col, Aggregator aggregator)
default N
Access2D.Aggregatable. aggregateColumn(long col, Aggregator aggregator)
N
Access2D.Aggregatable. aggregateDiagonal(long row, long col, Aggregator aggregator)
default N
Access2D.Aggregatable. aggregateDiagonal(Aggregator aggregator)
N
Access1D.Aggregatable. aggregateRange(long first, long limit, Aggregator aggregator)
N
Access2D.Aggregatable. aggregateRow(long row, long col, Aggregator aggregator)
default N
Access2D.Aggregatable. aggregateRow(long row, Aggregator aggregator)
N
AccessAnyD.Aggregatable. aggregateSet(int dimension, long dimensionalIndex, Aggregator aggregator)
N
AccessAnyD.Aggregatable. aggregateSet(long[] initial, int dimension, Aggregator aggregator)
default void
AccessAnyD.Aggregatable. reduce(int dimension, Aggregator aggregator, Mutate1D receiver)
R
StructureAnyD.ReducibleTo1D. reduce(int dimension, Aggregator aggregator)
R
StructureAnyD.ReducibleTo2D. reduce(int rowDimension, int columnDimension, Aggregator aggregator)
default void
Access2D.Aggregatable. reduceColumns(Aggregator aggregator, Mutate1D receiver)
R
Structure2D.ReducibleTo1D. reduceColumns(Aggregator aggregator)
default void
Access2D.Aggregatable. reduceRows(Aggregator aggregator, Mutate1D receiver)
R
Structure2D.ReducibleTo1D. reduceRows(Aggregator aggregator)
-