numpy.arctanh

numpy.arctanh 함수는 하이퍼볼릭 아크탄젠트 값 (inverse hyperbolic tangent)을 반환합니다.



예제1

import numpy as np

a = np.arctanh([0, 0.5])

print(a)
[0.         0.54930614]

입력값에 대한 arctanh 함수값을 반환합니다.



예제2

import numpy as np
import matplotlib.pylab as plt

x = np.linspace(-1, 1, 1000)
plt.plot(x, np.arctanh(x))
plt.xlabel('x')
plt.ylabel('arctanh(x)')
plt.axis('tight')
plt.show()

위의 코드는 NumPy와 Matplotlib을 이용해서 -1에서 1의 범위에서 arctanh 함수를 그래프로 나타냅니다.

결과는 아래와 같습니다.

../_images/numpy_arctanh_01.png

그림. 하이퍼볼릭 아크탄젠트 함수 그리기.



이전글/다음글

이전글 :
다음글 :