hypot()函数是Python中的内置数学函数,可返回欧几里得范数,。
用法:
hypot(x, y)
参数:
x and y are numerical values
返回值:
Returns a float value having Euclidean norm, sqrt(x*x + y*y).
错误:
When more then two arguments are passed, it returns a TypeError.
注意:必须先导入数学模块,然后才能使用hypot()函数。下面是hypot()函数的演示:
代码1:
# Python3 program for hypot() function
# Import the math module
import math
# Use of hypot fucntion
print("hypot(3, 4):", math.hypot(3, 4))
# Neglects the negative sign
print("hypot(-3, 4):", math.hypot(-3, 4))
print("hypot(6, 6):", math.hypot(6, 6))
输出:
hypot(3, 4): 5.0 hypot(-3, 4): 5.0 hypot(6, 6): 8.48528137423857
代码2:
# Python3 program for error in hypot() function
# import the math module
import math
# Use of hypot() function
print("hypot(3, 4, 6):", math.hypot(3, 4, 6))
输出:
Traceback (most recent call last): File "/home/d8c8612ee97dd2c763e2836de644fac1.py", line 7, in print("hypot(3, 4, 6):", math.hypot(3, 4, 6)) TypeError:hypot expected 2 arguments, got 3
实际应用:
给定垂直和直角三角形的底边,找到斜边。
使用毕达哥拉斯定理,该定理指出斜边的平方(与直角相反的一侧)等于其他两侧的平方和。
因此,
Hypotenuse = sqrt(p^2 + b^2)
代码3:
# Python3 program for finding Hypotenuse
# in hypot() function
# import the math module
from math import hypot
# Perpendicular and base
p = 3
b = 4
# Calculates the hypotenuse
print("Hypotenuse is:", hypot(p, b))
输出:
Hypotenuse is:5.0
相关用法
- Python numpy.hypot()用法及代码示例
- Python math.cos()用法及代码示例
- Python math.sin()用法及代码示例
- Python math.gcd()用法及代码示例
- Python math.tan()用法及代码示例
- Python math.copysign()用法及代码示例
- Python math copysign()用法及代码示例
- Python math.floor()用法及代码示例
- Python math.factorial()用法及代码示例
- Python math.fabs()用法及代码示例
- Python math.ceil()用法及代码示例
- Python math sqrt()用法及代码示例
- Python math modf()用法及代码示例
- Python math gamma()用法及代码示例
- Python math.isqrt()用法及代码示例
注:本文由纯净天空筛选整理自Striver大神的英文原创作品 Python math function | hypot()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。