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

Python에서 각도의 삼각법 사인 얻기

<시간/>

각도의 삼각 사인을 찾으려면 Python Numpy에서 numpy.sin() 메서드를 사용합니다. 이 메서드는 첫 번째 매개변수 x의 각 요소에 대한 사인을 반환합니다. 첫 번째 매개변수 x는 라디안 단위의 각도입니다(2pi는 360도를 의미함). 두 번째 및 세 번째 매개변수는 선택 사항입니다.

두 번째 매개변수는 결과가 저장되는 위치인 ndarray입니다. 제공된 경우 입력이 브로드캐스트하는 모양이 있어야 합니다. 제공되지 않거나 None이면 새로 할당된 배열이 반환됩니다. 튜플(키워드 인수로만 가능)의 길이는 출력 수와 동일해야 합니다.

세 번째 매개변수는 조건이 입력을 통해 브로드캐스트된다는 것입니다. 조건이 True인 위치에서 out 배열은 ufunc 결과로 설정됩니다. 다른 곳에서는 out 배열이 원래 값을 유지합니다. 초기화되지 않은 out 배열이 기본 out=None을 통해 생성되는 경우 조건이 False인 위치는 초기화되지 않은 상태로 유지됩니다.

단계

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

import numpy as np

삼각 사인을 구합니다. 90도 죄 찾기 -

print("\nResult...",np.sin(np.pi/2.))

60도 죄 찾기 -

print("\nResult...",np.sin(np.pi/3.))

45도에서 죄 찾기 -

print("\nResult...",np.sin(np.pi/4.))

죄 0도 찾기 -

print("\nResult...",np.sin(0))

예시

import numpy as np

# To find the Trigonometric sine of an angle, use the numpy.sin() method in Python Numpy
# The method returns the sine of each element of the 1st parameter x. This is a scalar if is a scalar.

print("Get the Trigonometric sine...")

# finding sin 90 degrees
print("\nResult...",np.sin(np.pi/2.))

# finding sin 60 degrees
print("\nResult...",np.sin(np.pi/3.))

# finding sin 45 degrees
print("\nResult...",np.sin(np.pi/4.))

# finding sin 30 degrees
print("\nResult...",np.sin(np.pi/6.))

# finding sin 0 degrees
print("\nResult...",np.sin(0))

출력

Get the Trigonometric sine...

Result... 1.0

Result... 0.8660254037844386

Result... 0.7071067811865475

Result... 0.49999999999999994

Result... 0.0