numpy.log(x[, out]) = Natural logarithm, element-wise. The natural logarithm
numpy.cos(x[, out]) = Cosine element-wise.
numpy.tanh(x[, out]) = Compute hyperbolic tangent element-wise. Equivalent to np.sinh(x)/np.cosh(x) or -1j
numpy.sqrt(x[, out]) = Return the positive square-root of an array, element-wise.
numpy.nan_to_num(x)
numpy.frexp(x[, out1, out2]) = Decompose the elements of x into mantissa and twos exponent. Returns (mantissa
numpy.cosh(x[, out]) = Hyperbolic cosine, element-wise. Equivalent to 1/2 * (np.exp(x) + np.exp(-x)) and np
numpy.square(x[, out]) = Return the element-wise square of the input.
numpy.maximum(x1, x2[, out]) = Element-wise maximum of array elements. Compare two arrays and returns a new array containing
numpy.unwrap(p, discont=3.141592653589793, axis=-1)
Page 5 of 9