numpy.arctan(x[, out]) = Trigonometric inverse tangent, element-wise. The inverse of tan, so that if y = tan(x)
numpy.sin(x[, out]) = Trigonometric sine, element-wise.
numpy.deg2rad(x[, out]) = Convert angles from degrees to radians.
numpy.hypot(x1, x2[, out]) = Given the ?legs? of a right triangle, return its hypotenuse. Equivalent to sqrt(x1**2 +
numpy.divide(x1, x2[, out]) = Divide arguments element-wise.
numpy.trunc(x[, out]) = Return the truncated value of the input, element-wise. The truncated value of the scalar x
numpy.fabs(x[, out]) = Compute the absolute values element-wise. This function returns the absolute values (positive magnitude)
numpy.cross(a, b, axisa=-1, axisb=-1, axisc=-1, axis=None)
numpy.exp2(x[, out]) = Calculate 2**p for all p in the input array.
numpy.power(x1, x2[, out]) = First array elements raised to powers from second array, element-wise. Raise each base in x1
Page 7 of 9