当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python math.tan()用法及代码示例


在Python中,数学模块包含许多数学运算,可以使用该模块轻松执行。math.tan()函数返回作为参数传递的值的正切值。在此函数中传递的值应以弧度为单位。

用法: math.tan(x)

参数:
x:要传递给tan()的值


返回:返回作为参数传递的值的正切值

代码1:

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


代码2:

# Python program showing  
# Graphical representation of  
# tan() function  
import math 
import numpy as np 
import matplotlib.pyplot as plt  
  
in_array = np.linspace(0, np.pi, 10)  
  
out_array = [] 
  
for i in range(len(in_array)):
    out_array.append(math.tan(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.tan()")  
plt.xlabel("X")  
plt.ylabel("Y")  
plt.show() 
输出:

in_array: [0. 0.34906585 0.6981317 1.04719755 1.3962634 1.74532925
2.0943951 2.44346095 2.7925268 3.14159265]

out_array: [0.0, 0.36397023426620234, 0.8390996311772799, 1.7320508075688767, 5.671281819617707, -5.671281819617711, -1.7320508075688783, -0.8390996311772804, -0.36397023426620256, -1.2246467991473532e-16]



相关用法


注:本文由纯净天空筛选整理自Shivam_k大神的英文原创作品 Python | math.tan() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。