Given two sides of a right triangle, return its hypotenuse.
x : array_like
Base of the triangle.
y : array_like
Height of the triangle.
z : ndarray
Hypotenuse of the triangle: sqrt(x**2 + y**2)
Examples
>>> np.hypot(3,4) 5.0
numpy.arctan
numpy.arctan2