Python數位hypot()
方法返回歐幾里得範數,sqrt(x * x + y * y)
。它是從原點到點(x,y)
的向量長度
語法
以下是hypot()
方法的語法 -
hypot(x, y)
注意 - 此函式不能直接存取,需要匯入
math
模組,需要使用math
靜態物件呼叫此函式。
引數
x
- 此引數必須是數位值。y
- 此引數必須是數位值。返回值
sqrt(x * x + y * y)
。以下範例顯示了hypot()
方法的用法。
#!/usr/bin/python3
import math
print ("hypot(3, 2) : ", math.hypot(3, 2))
print ("hypot(-3, 3) : ", math.hypot(-3, 3))
print ("hypot(0, 2) : ", math.hypot(0, 2))
當執行上述程式時,它會產生以下結果 -
hypot(3, 2) : 3.60555127546
hypot(-3, 3) : 4.24264068712
hypot(0, 2) : 2.0