簡單來說,atan2()
方法是反正切函數。使用atan2(x, y)
simpy模塊中的方法,我們可以計算two-argument反正切。此函數僅針對實數x和y定義。
Syntax:sympy.atan(x) Return:Returns the arc tangent of x
代碼1:
下麵是使用atan()方法查找反正切函數的示例。
# importing sympy library
from sympy import *
# calling atan2() method on expression
geek1 = atan2(1, 1)
geek2 = atan2(1, -1)
print(geek1)
print(geek2)
輸出:
pi/4 3*pi/4
代碼2:
# importing sympy library
from sympy import atan2
# calling atan2() method on expression
geek = atan2(-1, -1)
print(geek)
輸出:
-3*pi/4
相關用法
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python Decimal max()用法及代碼示例
- Python PIL ImageOps.fit()用法及代碼示例
- Python os.rmdir()用法及代碼示例
- Python sympy.det()用法及代碼示例
- Python Decimal min()用法及代碼示例
- Python os.readlink()用法及代碼示例
- Python os.writev()用法及代碼示例
- Python os.readv()用法及代碼示例
- Python PIL RankFilter()用法及代碼示例
- Python os.rename()用法及代碼示例
- Python os.sendfile()用法及代碼示例
注:本文由純淨天空篩選整理自Shivam_k大神的英文原創作品 Python | sympy.atan2() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。