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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。