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


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


數學模塊包含許多用於數學運算的函數。 math.atanh()函數將數字的雙曲反正切值作為值返回。此函數中傳遞的值應在-0.99到0.99之間。

用法: math.atanh(x)

參數:此方法僅接受單個參數。

  • x:此參數是要傳遞給atanh()的值

返回值:此函數返回數字的雙曲反正切值。

以下示例說明了上述函數的用法:



範例1:

# Python code to implement 
# the atanh()function 
   
# importing "math" 
# for mathematical operations   
import math    
  
# Return the hyperbolic arctangent of numbers  
print (math.asinh(0.17)) 
print (math.asinh(0.56)) 
print (math.asinh(0.245)) 
print (math.asinh(-0.3445))  

輸出:

0.1691916359351954
0.5342240739536623
0.24261291139707475
-0.33802589861247084

範例2:

# Python code to implement 
# the atanh()function 
import math  
import numpy as np  
import matplotlib.pyplot as plt   
     
in_array = np.linspace(-np.pi / 3.5, np.pi / 3.5, 10)   
  
print("Input_Array:\n", in_array) 
  
out_array = []  
     
for i in range(len(in_array)):  
    out_array.append(math.atanh(in_array[i]))  
    i += 1
     
print("\nOutput_Array:\n", out_array)    
   
plt.plot(in_array, out_array, "go:")   
plt.title("math.atanh()")   
plt.xlabel("X")   
plt.ylabel("Y")   
plt.show()  

輸出:

Input_Array:
 [-0.8975979 -0.6981317 -0.4986655 -0.2991993 -0.0997331  0.0997331
  0.2991993  0.4986655  0.6981317  0.8975979]

Output_Array:
 [-1.459718446245292, -0.8636465496349238, -0.547528391492765, -0.30863994644251713, -0.10006575914805733, 0.10006575914805743, 0.30863994644251724, 0.5475283914927653, 0.863646549634924, 1.459718446245292]




相關用法


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