簡單來說,cos()
方法是餘弦函數。使用cos(x)
simpy模塊中的方法,我們可以計算x的餘弦。
Syntax:sympy.cos(x) Return:Returns the cosine of x
代碼1:
下麵是使用cos()方法查找餘弦函數的示例。
# importing sympy library
from sympy import *
# calling cos() method on expression
geek1 = cos(-1)
geek2 = cos(pi / 3)
print(geek1)
print(geek2)
輸出:
cos(1) 1/2
代碼2:
# importing sympy library
from sympy import *
# calling cos() method on expression
geek = cos(2 + 5j)
print(geek)
輸出:
-30.8822353189167 - 67.4727884405875*I
相關用法
- Python set()用法及代碼示例
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python getattr()用法及代碼示例
- Python os.getpgrp()用法及代碼示例
- Python os.fork()用法及代碼示例
- Python os.nice()用法及代碼示例
- Python os.getsid()用法及代碼示例
- Python os.setregid()用法及代碼示例
- Python os.pwrite()用法及代碼示例
- Python os.writev()用法及代碼示例
- Python os.readv()用法及代碼示例
- Python sympy.det()用法及代碼示例
- Python PIL ImageOps.fit()用法及代碼示例
注:本文由純淨天空篩選整理自Shivam_k大神的英文原創作品 Python | sympy.cos() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。