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.arcsin(x[, out]) = Inverse sine, element-wise.
numpy.imag(val)
numpy.rad2deg(x[, out]) = Convert angles from radians to degrees.
numpy.power(x1, x2[, out]) = First array elements raised to powers from second array, element-wise. Raise each base in x1
numpy.logaddexp(x1, x2[, out]) = Logarithm of the sum of exponentiations of the inputs. Calculates log(exp(x1) +
numpy.floor_divide(x1, x2[, out]) = Return the largest integer smaller or equal to the division of the inputs. It is equivalent
numpy.angle(z, deg=0)
numpy.fmod(x1, x2[, out]) = Return the element-wise remainder of division. This is the NumPy implementation of the C library
Page 7 of 9