numpy.arctan

numpy.arctan 함수는 역삼각함수 아크탄젠트 값 (inverse trigonometric tangent)을 반환합니다.



예제1

import numpy as np

a = np.arctan(0)       # 0
b = np.arctan(1)       # pi/4
c = np.arctan([0, 1])  # [0, pi/4]

print(a)
print(b)
print(c)
0.0
0.7853981633974483
[0.         0.78539816]

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



예제2

import numpy as np
import matplotlib.pylab as plt

x = np.linspace(-10, 10, 201)
plt.plot(x, np.arctan(x))
plt.xlabel('x')
plt.ylabel('arctan(x)')
plt.axis('tight')
plt.show()

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

결과는 아래와 같습니다.

../_images/numpy_arctan_01.png

그림. 아크탄젠트 함수 그리기.



이전글/다음글

이전글 :
다음글 :