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


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


數學模塊包含許多用於數學運算的函數。 math.asinh()函數返回數字的雙曲反正弦值。

用法: math.asinh(x)

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

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

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

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



範例1:

# Python code to implement 
# the asinh()function 
         
# importing "math" 
# for mathematical operations   
import math   
         
# Return the hyperbolic arc sine value of numbers  
print (math.asinh(17)) 
print (math.asinh(5.6)) 
print (math.asinh(245)) 
print (math.asinh(-3445))

輸出:

3.5272244561999657
2.4237920435875173
6.194409556009931
-8.837826385072708

範例2:

# Python code to implement 
# the aasinh()function 
import math  
import matplotlib.pyplot as plt   
    
in_array = [-0.14159265, -0.57039399, -0.28559933,  
            0.28559933, 0.57039399,  0.94159265]  
    
out_array = []  
    
for i in range(len(in_array)):  
    out_array.append(math.asinh(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.asinh()")   
plt.xlabel("X")   
plt.ylabel("Y")   
plt.show()  

輸出:

Input_Array:
 [-0.14159265, -0.57039399, -0.28559933, 0.28559933, 0.57039399, 0.94159265]

Output_Array:
 [-0.14112374861052449, -0.5432727660031201, -0.28185270483975433, 0.28185270483975433, 0.5432727660031201, 0.8394645626112472]




相關用法


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