numpy.reciprocal(x[, out]) = Return the reciprocal of the argument, element-wise. Calculates 1/x.
numpy.absolute(x[, out]) = Calculate the absolute value element-wise.
numpy.arctanh(x[, out]) = Inverse hyperbolic tangent element-wise.
numpy.log10(x[, out]) = Return the base 10 logarithm of the input array, element-wise.
numpy.degrees(x[, out]) = Convert angles from radians to degrees.
numpy.real_if_close(a, tol=100)
numpy.around(a, decimals=0, out=None)
numpy.sign(x[, out]) = Returns an element-wise indication of the sign of a number. The
numpy.negative(x[, out]) = Numerical negative, element-wise.
numpy.conj(x[, out]) = Return the complex conjugate, element-wise. The complex conjugate of a complex number is obtained by
Page 1 of 9