mindspore.ops.hypot
- mindspore.ops.hypot(input, other)[source]
Given the legs of a right triangle, return its hypotenuse, element-wise.
Support broadcasting and type promotion.
- Parameters
- Returns
Tensor
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> import mindspore >>> input = mindspore.tensor([3., 5., 7.]) >>> other = mindspore.tensor([4., 12., 24.]) >>> output = mindspore.ops.hypot(input, other) >>> print(output) [ 5. 13. 25.]