dpnp.hypot

dpnp.hypot(x1, x2, /, out=None, *, where=True, order='K', dtype=None, subok=True, **kwargs)[source]

Given the “legs” of a right triangle, return its hypotenuse.

For full documentation refer to numpy.hypot.

Returns:

out – The hypotenuse of the triangle(s).

Return type:

dpnp.ndarray

Limitations

Parameters x1 and x2 are supported as either scalar, dpnp.ndarray or dpctl.tensor.usm_ndarray, but both x1 and x2 can not be scalars at the same time. Parameters where, dtype and subok are supported with their default values. Keyword argument kwargs is currently unsupported. Otherwise the function will be executed sequentially on CPU. Input array data types are limited by supported real-valued data types.

See also

dpnp.reduce_hypot

The square root of the sum of squares of elements in the input array.

Examples

>>> import dpnp as np
>>> x1 = 3 * np.ones((3, 3))
>>> x2 = 4 * np.ones((3, 3))
>>> np.hypot(x1, x2)
array([[5., 5., 5.],
       [5., 5., 5.],
       [5., 5., 5.]])

Example showing broadcast of scalar argument:

>>> np.hypot(x1, 4)
array([[ 5.,  5.,  5.],
       [ 5.,  5.,  5.],
       [ 5.,  5.,  5.]])