numpy.floor(x[, out]) = Return the floor of the input, element-wise. The floor of the scalar x is the largest
numpy.hypot(x1, x2[, out]) = Given the ?legs? of a right triangle, return its hypotenuse. Equivalent to sqrt(x1**2 +
numpy.real(val)
numpy.divide(x1, x2[, out]) = Divide arguments element-wise.
numpy.true_divide(x1, x2[, out]) = Returns a true division of the inputs, element-wise. Instead of the Python traditional
numpy.deg2rad(x[, out]) = Convert angles from degrees to radians.
numpy.modf(x[, out1, out2]) = Return the fractional and integral parts of an array, element-wise. The fractional and integral
numpy.fmax(x1, x2[, out]) = Element-wise maximum of array elements. Compare two arrays and returns a new array containing the
numpy.ediff1d(ary, to_end=None, to_begin=None)
numpy.radians(x[, out]) = Convert angles from degrees to radians.
Page 6 of 9