Enum ReduceType
Type used for Reduce function
public enum ReduceType
Fields
ReduceAvg = 1
The output is the mean vector of all the matrix rows/columns
ReduceMax = 2
The output is the maximum (column/row-wise) of all the matrix rows/columns
ReduceMin = 3
The output is the minimum (column/row-wise) of all the matrix rows/columns
ReduceSum = 0
The output is the sum of all the matrix rows/columns
ReduceSum2 = 4
the output is the sum of all squared rows/columns of the matrix.