數學模塊包含許多用於數學運算的函數。 math.atan()函數返回數字的反正切值。此函數中傳遞的值應在-PI /2和PI /2弧度之間。
用法: math.atan(x)
參數:此方法僅接受單個參數。
- x:此參數是要傳遞給atan()的值
返回值:此函數返回數字的反正切值。
以下示例說明了上述函數的用法:
範例1:
# Python code to implement
# the atan()function
# importing "math"
# for mathematical operations
import math
a = math.pi / 6
# returning the value of arctangent of pi / 6
print ("The value of tangent of pi / 6 is:", end ="")
print (math.atan(a))
輸出:
The value of tangent of pi / 6 is:0.48234790710102493
範例2:
# Python code to implement
# the atan()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.atan(in_array[i]))
i += 1
print("Input_Array:\n", in_array)
print("\nOutput_Array:\n", out_array)
plt.plot(in_array, out_array, "go:")
plt.title("math.atan()")
plt.xlabel("X")
plt.ylabel("Y")
plt.show()
輸出:
Input_Array: [0. 0.34906585 0.6981317 1.04719755 1.3962634 1.74532925 2.0943951 2.44346095 2.7925268 3.14159265] Output_Array: [0.0, 0.3358423725664079, 0.6094709714274295, 0.808448792630022, 0.9492822422213403, 1.0504981725497873, 1.1253388328842984, 1.1823365638628716, 1.2269249964859286, 1.2626272556789118]
相關用法
- Python Wand function()用法及代碼示例
- Python map()用法及代碼示例
- Python dir()用法及代碼示例
- Python int()用法及代碼示例
- Python id()用法及代碼示例
- Python hex()用法及代碼示例
- Python now()用法及代碼示例
- Python oct()用法及代碼示例
- Python str()用法及代碼示例
- Python cmp()用法及代碼示例
- Python sum()用法及代碼示例
- Python ord()用法及代碼示例
- Python tell()用法及代碼示例
- Python type()用法及代碼示例
- Python format()用法及代碼示例
- Python locals()用法及代碼示例
- Python numpy.ix_()用法及代碼示例
注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 Python – math.atan() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。