当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python math.hypot()用法及代码示例


Python math.hypot() 方法

math.hypot() 方法是 math 模块的一个库方法,用于求欧氏范数的结果,sqrt(x*x, y*y),它接受两个数并返回欧氏范数的结果。

欧几里得范数- 是从原点到向量的长度point (x,y)

注意:如果我们提供任何类似字符串的东西,除了数字,它会返回一个 “ValueError” - “TypeError:a float is required”。

参考:Python数学库

math.hypot() 方法的语法:

    math.hypot(x, y)

参数: x, y- 计算欧几里得范数的数字。

返回值: float- 它返回一个浮点值,它是欧几里得范数的计算结果。

例:

    Input:
    x = 2
    y = 3

    # function call
    print(math.hypot(x,y))

    Output:
    3.605551275463989

用于演示 math.hypot() 方法示例的 Python 代码

# python code to demonstrate example of 
# math.hypot() method 

# importing math module
import math 

# numbers
x = 2
y = 3
print(math.hypot(x,y))

x = 2.3
y = 3.34
print(math.hypot(x,y))

x = 0
y = 3
print(math.hypot(x,y))

x = 2
y = 0
print(math.hypot(x,y))

x = -2
y = 3
print(math.hypot(x,y))

x = -2
y = -3
print(math.hypot(x,y))

输出

3.605551275463989
4.055317496818221
3.0
2.0
3.605551275463989
3.605551275463989


相关用法


注:本文由纯净天空筛选整理自 math.hypot() method with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。