Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python에서 삼각법 역탄젠트 가져오기

<시간/>

arctan은 다중값 함수입니다. 각 x에 대해 tan(z)=x와 같은 무한히 많은 숫자 z가 있습니다. 관례는 실수부가 [-pi/2, pi/2]에 있는 각도 z를 반환하는 것입니다. 역 탄젠트는 atan 또는 tan^{-1}이라고도 합니다.

실수 값 입력 데이터 유형의 경우 arctan은 항상 실제 출력을 반환합니다. 실수 또는 무한대로 표현할 수 없는 각 값에 대해 nan을 생성하고 잘못된 부동 소수점 오류 플래그를 설정합니다. 복소수 값 입력의 경우 arctan은 [1j, infj] 및 [-1j, -infj]를 분기로 갖는 복소수 해석 함수이며 전자는 왼쪽에서, 후자는 오른쪽에서 연속입니다.

삼각법 역탄젠트를 찾으려면 Python Numpy에서 numpy.arctan() 메서드를 사용하십시오. 이 메서드는 tan의 역을 반환하므로 y =tan(x)이면 x =arctan(y)입니다. 첫 번째 매개변수는 arraylike입니다. 두 번째 및 세 번째 매개변수는 선택 사항입니다. 두 번째 매개변수는 ndarray로 결과가 저장되는 위치입니다. 제공된 경우 입력이 브로드캐스트하는 모양이 있어야 합니다. notprovided 또는 None이면 새로 할당된 배열이 반환됩니다. 세 번째 매개변수는 입력을 통해 방송되는 조건입니다. 조건이 True인 위치에서 out 배열은 ufunc 결과로 설정됩니다. 다른 곳에서는 out 배열이 원래 값을 유지합니다.

단계

먼저 필요한 라이브러리를 가져옵니다 -

import numpy as np

삼각법 역탄젠트를 구합니다. 1 −

에 대한 arctan 찾기
print("\nResult...",np.arctan(1))

-1 −

에 대한 arctan 찾기
print("\nResult...",np.arctan(-1))

0 −

에 대한 arctan 찾기
print("\nResult...",np.arctan(0))

0.3에 대한 arctan 찾기 -

print("\nResult...",np.arctan(0.3))

예시

import numpy as np

# To find the Trigonometric inverse tangent, use the numpy.arctan() method in Python Numpy
# The method returns the inverse of tan, so that if y = tan(x) then x = arctan(y).
# A tuple (possible only as a keyword argument) must have length equal to the number of outputs.

print("Get the Trigonometric inverse tangent...")

# finding arctan for 1
print("\nResult...",np.arctan(1))

# finding arctan for -1
print("\nResult...",np.arctan(-1))

# finding arctan for 0
print("\nResult...",np.arctan(0))

# finding arctan for 0.3
print("\nResult...",np.arctan(0.3))

출력

Get the Trigonometric inverse tangent...

Result... 0.7853981633974483

Result... -0.7853981633974483

Result... 0.0

Result... 0.2914567944778671