numpy.arctan2(x1, x2[, out]) = Element-wise arc tangent of x1/x2 choosing the quadrant correctly. The quadrant
numpy.trunc(x[, out]) = Return the truncated value of the input, element-wise. The truncated value of the scalar x
numpy.fmod(x1, x2[, out]) = Return the element-wise remainder of division. This is the NumPy implementation of the C library
numpy.cumsum(a, axis=None, dtype=None, out=None)
numpy.sum(a, axis=None, dtype=None, out=None, keepdims=False)
numpy.prod(a, axis=None, dtype=None, out=None, keepdims=False)
numpy.tan(x[, out]) = Compute tangent element-wise. Equivalent to np.sin(x)/np.cos(x) element-wise.
numpy.fix(x, y=None)
numpy.fabs(x[, out]) = Compute the absolute values element-wise. This function returns the absolute values (positive magnitude)
numpy.floor_divide(x1, x2[, out]) = Return the largest integer smaller or equal to the division of the inputs. It is equivalent
Page 8 of 9