numpy.clip(a, a_min, a_max, out=None)
numpy.arcsinh(x[, out]) = Inverse hyperbolic sine element-wise.
numpy.maximum(x1, x2[, out]) = Element-wise maximum of array elements. Compare two arrays and returns a new array containing
numpy.rint(x[, out]) = Round elements of the array to the nearest integer.
numpy.unwrap(p, discont=3.141592653589793, axis=-1)
numpy.sqrt(x[, out]) = Return the positive square-root of an array, element-wise.
numpy.logaddexp2(x1, x2[, out]) = Logarithm of the sum of exponentiations of the inputs in base-2. Calculates log2(2**x1
numpy.cosh(x[, out]) = Hyperbolic cosine, element-wise. Equivalent to 1/2 * (np.exp(x) + np.exp(-x)) and np
numpy.exp(x[, out]) = Calculate the exponential of all elements in the input array.
numpy.cos(x[, out]) = Cosine element-wise.
Page 5 of 9