numpy.ldexp(x1, x2[, out]) = Returns x1 * 2**x2, element-wise. The mantissas x1 and twos exponents x2
numpy.reciprocal(x[, out]) = Return the reciprocal of the argument, element-wise. Calculates 1/x.
numpy.arccosh(x[, out]) = Inverse hyperbolic cosine, element-wise.
numpy.around(a, decimals=0, out=None)
numpy.sign(x[, out]) = Returns an element-wise indication of the sign of a number. The
numpy.add(x1, x2[, out]) = Add arguments element-wise.
numpy.subtract(x1, x2[, out]) = Subtract arguments, element-wise.
numpy.multiply(x1, x2[, out]) = Multiply arguments element-wise.
numpy.absolute(x[, out]) = Calculate the absolute value element-wise.
numpy.arctanh(x[, out]) = Inverse hyperbolic tangent element-wise.
Page 1 of 9