简单来说,atan()
方法是反正切函数。使用atan(x)
simpy模块中的方法,我们可以计算x的反正切或反正切。
Syntax:sympy.atan(x) Return:Returns the arc tangent of x
代码1:
以下是使用示例atan()
查找反正切函数的方法。
# importing sympy library
from sympy import *
# calling atan() method on expression
geek1 = atan(-1)
geek2 = atan(1)
print(geek1)
print(geek2)
输出:
-pi/4 pi/4
代码2:
# importing sympy library
from sympy import atan
# calling atan() method on expression
geek = atan(1)
print(geek)
输出:
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.atan() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。