aerosandbox.numpy.arithmetic_monadic ==================================== .. py:module:: aerosandbox.numpy.arithmetic_monadic Functions --------- .. autoapisummary:: aerosandbox.numpy.arithmetic_monadic.sum aerosandbox.numpy.arithmetic_monadic.mean aerosandbox.numpy.arithmetic_monadic.abs aerosandbox.numpy.arithmetic_monadic.prod Module Contents --------------- .. py:function:: sum(x, axis = None) Sum of array elements over a given axis. See syntax here: https://numpy.org/doc/stable/reference/generated/numpy.sum.html .. py:function:: mean(x, axis = None) Compute the arithmetic mean along the specified axis. See syntax here: https://numpy.org/doc/stable/reference/generated/numpy.mean.html .. py:function:: abs(x) .. py:function:: prod(x, axis = None) Return the product of array elements over a given axis. See syntax here: https://numpy.org/doc/stable/reference/generated/numpy.prod.html