Python numpy.arctanh()
numpy.arctanh() :这个数学函数帮助用户计算反双曲正切,对所有Arr的元素进行计算。
语法 : numpy.arctanh(arr, /, out=None, *, where=True, casting=’same_kind’, order=’K’, dtype=None, ufunc ‘arctanh’)
参数 :
arr : array_like
输入阵列。
out :[ndarray, optional] 一个储存结果的位置。
-> 如果提供,它必须有一个输入广播到的形状。
-> 如果没有提供或没有,将返回一个新分配的数组。
where : array_like, optional
值为True表示在该位置计算ufunc,值为False表示不考虑输出中的值。
**kwargs :允许向一个函数传递长度可变的关键字参数。当我们想在一个函数中处理命名参数时使用。
返回 :一个具有反双曲正切的数组Arr
为所有Arr即数组元素。
注意 :
2pi 弧度=360度
惯例是返回Arr的角度,其虚部位于[-pi/2, pi/2]内。
**代码 #1 : **
# Python program explaining
# arctanh() function
import numpy as np
in_array = [0.2, 0.11, 0.5, 0.99]
print ("Input array : \n", in_array)
arctanh_Values = np.arctanh(in_array)
print ("\nInverse hyperbolic tangent values of input array : \n", arctanh_Values)
输出 :
Input array :
[0.2, 0.11, 0.5, 0.99]
Inverse hyperbolic tangent values of input array :
[ 0.20273255 0.11044692 0.54930614 2.64665241]
代码#2:图形化表示
# Python program showing
# Graphical representation
# of arctanh() function % matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
in_array = np.linspace(0.1, 0.99, 25)
out_array1 = np.tan(in_array)
out_array2 = np.arctanh(in_array)
print("in_array : ", in_array)
print("\nout_array with tan : ", out_array1)
print("\nout_array with arctanh : ", out_array2)
# blue for numpy.tanh()
# red for numpy.arctanh()
plt.plot(in_array, out_array1,
color = 'blue', marker = ".")
plt.plot(in_array, out_array2,
color = 'red', marker = "+")
plt.title("blue : numpy.tan() \nred : numpy.arctanh()")
plt.xlabel("X")
plt.ylabel("Y")
输出 :
in_array : [ 0.1 0.13708333 0.17416667 0.21125 0.24833333 0.28541667
0.3225 0.35958333 0.39666667 0.43375 0.47083333 0.50791667
0.545 0.58208333 0.61916667 0.65625 0.69333333 0.73041667
0.7675 0.80458333 0.84166667 0.87875 0.91583333 0.95291667
0.99 ]
out_array with tan : [ 0.10033467 0.13794852 0.17594936 0.21444958 0.25356734 0.29342809
0.33416626 0.37592723 0.41886955 0.46316761 0.5090147 0.55662672
0.60624669 0.65815012 0.7126517 0.77011355 0.83095552 0.89566817
0.96482941 1.03912577 1.11938038 1.20658966 1.30197266 1.40703805
1.52367674]
out_array with arctanh : [ 0.10033535 0.13795183 0.17596049 0.21447937 0.25363582 0.29356929
0.33443481 0.37640728 0.41968694 0.4645065 0.51114049 0.5599181
0.61124089 0.66560789 0.72365253 0.78619832 0.85434644 0.92961997
1.01421559 1.11147549 1.22686186 1.37025371 1.5625545 1.86258009
2.64665241]