numpy.arccosh

numpy.arccosh 함수는 하이퍼볼릭 아크코사인 값 (inverse hyperbolic cosine)을 반환합니다.



예제1

import numpy as np

a = np.arccosh([np.e, 10.0])

print(a)
[1.65745445 2.99322285]

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



예제2

import numpy as np
import matplotlib.pylab as plt

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

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

결과는 아래와 같습니다.

../_images/numpy_arccosh_01.png

그림. 하이퍼볼릭 아크코사인 함수 그리기.



이전글/다음글

이전글 :
다음글 :