當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python math hypot()用法及代碼示例


hypot()函數是Python中的內置數學函數,可返回歐幾裏得範數, \sqrt{(x*x + y*y)}

用法:

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


相關用法


注:本文由純淨天空篩選整理自Striver大神的英文原創作品 Python math function | hypot()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。