Data Reduction
Functions for aggregating and reducing data to summarize or condense information.
af.accum() - Evaluate the cumulative sum (inclusive) along a given dimension. |
af.all_true() - Check if all values along a given dimension are true. |
af.any_true() - Check if any values along a given dimension are true. |
af.count() - Count non-zero values in an array along a given dimension. |
af.dot() - Compute the dot product. |
af.imax() - Finds the maximum value. |
af.imin() - Finds the minimum value. |
af.max() - Return the maximum along a given dimension. |
af.maxof() - Elementwise maximum between two arrays |
af.mean() - Find the mean of values in the input. |
af.median() - Find the median of values in the input. |
af.min() - Return the minimum along a given dimension. |
af.minof() - Elementwise minimum between two arrays |
af.product() - Multiply array elements over a given dimension. |
af.scan() - Scan an array (generalized) over a given dimension. |
af.sttdev() - Find the standard deviation of values in the input. |
af.sum() - Sum array elements over a given dimension. |