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


Python math.cos()用法及代碼示例


在Python中,數學模塊包含許多數學運算,可以使用該模塊輕鬆執行。math.cos()函數返回作為參數傳遞的值的餘弦值。在此函數中傳遞的值應以弧度為單位。

用法: math.cos(x)

參數:
x:要傳遞給cos()的值


返回:返回作為參數傳遞的值的餘弦值

代碼1:

# Python code to demonstrate the working of cos() 
     
# importing "math" for mathematical operations  
import math  
    
a = math.pi / 6
     
# returning the value of cosine of pi / 6  
print ("The value of cosine of pi / 6 is:", end ="")  
print (math.cos(a)) 
輸出:
The value of cosine of pi/6 is:0.8660254037844387


代碼2:

# Python program showing  
# Graphical representation of  
# cos() function  
import math 
import numpy as np 
import matplotlib.pyplot as plt  
  
in_array = np.linspace(-(2 * np.pi), 2 * np.pi, 20) 
  
out_array = [] 
  
for i in range(len(in_array)):
    out_array.append(math.cos(in_array[i])) 
    i += 1
  
   
print("in_array:", in_array)  
print("\nout_array:", out_array)  
  
# red for numpy.sin()  
plt.plot(in_array, out_array, color = 'red', marker = "o")  
plt.title("math.cos()")  
plt.xlabel("X")  
plt.ylabel("Y")  
plt.show() 
輸出:

in_array: [-6.28318531 -5.62179738 -4.96040945 -4.29902153 -3.6376336 -2.97624567
-2.31485774 -1.65346982 -0.99208189 -0.33069396 0.33069396 0.99208189
1.65346982 2.31485774 2.97624567 3.6376336 4.29902153 4.96040945
5.62179738 6.28318531]

out_array: [1.0, 0.7891405093963934, 0.2454854871407988, -0.40169542465296987, -0.8794737512064891, -0.9863613034027223, -0.6772815716257412, -0.08257934547233249, 0.5469481581224268, 0.9458172417006346, 0.9458172417006346, 0.5469481581224268, -0.0825793454723316, -0.6772815716257405, -0.9863613034027223, -0.8794737512064893, -0.40169542465296987, 0.2454854871407988, 0.7891405093963934, 1.0]



相關用法


注:本文由純淨天空篩選整理自Shivam_k大神的英文原創作品 Python | math.cos() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。