numpy.reciprocal(x[, out]) = Return the reciprocal of the argument, element-wise. Calculates 1/x.
numpy.fmin(x1, x2[, out]) = Element-wise minimum of array elements. Compare two arrays and returns a new array containing the
numpy.log10(x[, out]) = Return the base 10 logarithm of the input array, element-wise.
numpy.negative(x[, out]) = Numerical negative, element-wise.
numpy.sign(x[, out]) = Returns an element-wise indication of the sign of a number. The
numpy.absolute(x[, out]) = Calculate the absolute value element-wise.
numpy.ldexp(x1, x2[, out]) = Returns x1 * 2**x2, element-wise. The mantissas x1 and twos exponents x2
numpy.degrees(x[, out]) = Convert angles from radians to degrees.
numpy.conj(x[, out]) = Return the complex conjugate, element-wise. The complex conjugate of a complex number is obtained by
numpy.arccosh(x[, out]) = Inverse hyperbolic cosine, element-wise.
Page 1 of 9