數學模塊包含許多用於數學運算的函數。 math.acosh()函數返回數字的雙曲反餘弦值。此函數中傳遞的值應大於或等於1。
用法: math.acosh(x)
參數:此方法僅接受單個參數。
- x:此參數是要傳遞給acosh()的值
返回值:此函數返回數字的雙曲反餘弦值。
以下示例說明了上述函數的用法:
範例1:
# Python code to implement
# the acosh()function
# importing "math"
# for mathematical operations
import math
a = math.pi / 6
# Return the hyperbolic arc cosine value of numbers
print (math.acosh(7))
print (math.acosh(56))
print (math.acosh(2.45))
print (math.acosh(1))
輸出:
2.6339157938496336 4.718419142372879 1.5447131178707394 0.0
範例2:
# Python code implementation of
# the acosh() function
import math
import numpy as np
import matplotlib.pyplot as plt
in_array = np.linspace(1, np.pi**2, 30)
out_array = []
for i in range(len(in_array)):
out_array.append(math.acosh(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.acosh()")
plt.xlabel("X")
plt.ylabel("Y")
plt.show()
輸出:
Input_Array: [1. 1.30584843 1.61169686 1.91754528 2.22339371 2.52924214 2.83509057 3.14093899 3.44678742 3.75263585 4.05848428 4.3643327 4.67018113 4.97602956 5.28187799 5.58772641 5.89357484 6.19942327 6.5052717 6.81112012 7.11696855 7.42281698 7.72866541 8.03451384 8.34036226 8.64621069 8.95205912 9.25790755 9.56375597 9.8696044 ] Output_Array: [0.0, 0.7634351653684978, 1.0562772501126303, 1.2679873925813194, 1.4372757745859863, 1.5794735761470122, 1.7025573669627803, 1.8113067645313763, 1.9088495232436826, 1.997360544554533, 2.07842113836573, 2.1532211217708626, 2.2226804635542514, 2.287526464855001, 2.348344844358015, 2.405614746886384, 2.4597334430301796, 2.51103419200721, 2.559799438447933, 2.6062707446710016, 2.6506563890658725, 2.693137263795659, 2.7338715120762482, 2.7729982170653664, 2.8106403673544613, 2.8469072638299315, 2.8818964902724367, 2.9156955397451294, 2.9483831668303044, 2.9800305196125625]
相關用法
- 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.acosh() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。