日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

math.atan2_带有Python示例的math.atan2()方法

發(fā)布時間:2023/12/1 47 豆豆
生活随笔 收集整理的這篇文章主要介紹了 math.atan2_带有Python示例的math.atan2()方法 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

math.atan2

Python math.atan2()方法 (Python math.atan2() method)

math.atan2() method is a library method of math module, it is used to get the arc tangent value of "y/x" (i.e. atan(y/x)), it accepts two numbers and returns arc tangent of "y/x".

math.atan2()方法是數(shù)學(xué)模塊的庫方法,用于獲取“ y / x”的 反正切值(即atan(y / x) ),它接受兩個數(shù)字并返回“ y”的反正切/ x” 。

Note: math.atan2() method accepts the only number, if we provide anything else except the number, it returns error TypeError - "TypeError: a float is required".

注意: math.atan2()方法接受唯一的數(shù)字,如果我們提供除數(shù)字以外的其他任何內(nèi)容,它將返回錯誤TypeError- “ TypeError:需要浮點(diǎn)數(shù)” 。

Syntax of math.atan2() method:

math.atan2()方法的語法:

math.atan2(y, x)

Parameter(s): y, x – are the numbers whose arc tangent to be calculate (i.e. atan(y/x)).

參數(shù): y,x –是要計算其反正切值的數(shù)字(即atan(y / x) )。

Return value: float – it returns a float value that is the arc tangent value of the numbers y/x.

返回值: float-返回一個浮點(diǎn)值,該值是數(shù)字y / x的反正切值。

Example:

例:

Input:y = 0.2345x = 1.234# function callprint(math.atan2(y, x))Output:0.18779323183177443

Python代碼演示math.atan2()方法的示例 (Python code to demonstrate example of math.atan2() method)

# python code to demonstrate example of # math.atan2() method # importing math module import math# numbers x = -1 y = 1 print("atan2(",x,",",y,") is = ", math.atan2(x,y))x = 0.2345 y = 1.234 print("atan2(",x,",",y,") is = ", math.atan2(x,y))x = -5 y = 5 print("atan2(",x,",",y,") is = ", math.atan2(x,y))x = 10 y = 20.23 print("atan2(",x,",",y,") is = ", math.atan2(x,y))

Output

輸出量

atan2( -1 , 1 ) is = -0.7853981633974483 atan2( 0.2345 , 1.234 ) is = 0.18779323183177443 atan2( -5 , 5 ) is = -0.7853981633974483 atan2( 10 , 20.23 ) is = 0.45908957477179374

TypeError example

TypeError示例

# python code to demonstrate example of # math.atan2() method with an exception# importing math module import math# numbers x = "2" y = "34" print("atan2(",x,",",y,") is = ", math.atan2(x,y))

Output

輸出量

Traceback (most recent call last):File "/home/main.py", line 10, in <module>print("atan2(",x,",",y,") is = ", math.atan2(x,y)) TypeError: a float is required

翻譯自: https://www.includehelp.com/python/math-atan2-method-with-example.aspx

math.atan2

總結(jié)

以上是生活随笔為你收集整理的math.atan2_带有Python示例的math.atan2()方法的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。