|
double | max (Array< double > const &in) |
| Get maximum of array elements .
|
double | maxAbs (Array< double > const &in) |
| Get maximum absolute magnitude of array elements .
|
double | min (Array< double > const &in) |
| Get minimum of array elements .
|
double | minAbs (Array< double > const &in) |
| Get minimum absolute magnitude of array elements .
|
double | sum (Array< double > const &in) |
| Compute sum of array elements .
|
double | innerProduct (Array< double > const &a, Array< double > const &b) |
| Compute inner product of two real arrays .
|
Functions that perform array reductions on the Cpu.
A reduction is any operation that involves reducing all of the elements of an array or set of arrays to a single scalar.
Examples include taking the sum or finding the maximum of all array elements, or taking an inner product of two arrays.