numpy.sinh(x[, out]) = Hyperbolic sine, element-wise. Equivalent to 1/2 * (np.exp(x) - np.exp(-x)) or -1j
numpy.expm1(x[, out]) = Calculate exp(x) - 1 for all elements in the array.
numpy.tanh(x[, out]) = Compute hyperbolic tangent element-wise. Equivalent to np.sinh(x)/np.cosh(x) or -1j
numpy.frexp(x[, out1, out2]) = Decompose the elements of x into mantissa and twos exponent. Returns (mantissa
numpy.log1p(x[, out]) = Return the natural logarithm of one plus the input array, element-wise. Calculates log(1 + x)
numpy.nan_to_num(x)
numpy.cos(x[, out]) = Cosine element-wise.
numpy.cosh(x[, out]) = Hyperbolic cosine, element-wise. Equivalent to 1/2 * (np.exp(x) + np.exp(-x)) and np
numpy.logaddexp2(x1, x2[, out]) = Logarithm of the sum of exponentiations of the inputs in base-2. Calculates log2(2**x1
numpy.arcsinh(x[, out]) = Inverse hyperbolic sine element-wise.
Page 4 of 9