Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

รับโคไซน์ตรีโกณมิติของมุมใน Python


ในการค้นหาโคไซน์ตรีโกณมิติ ให้ใช้เมธอด numpy.cos() ใน Python Numpy เมธอดคืนค่าไซน์ของแต่ละองค์ประกอบของพารามิเตอร์ตัวที่ 1 x พารามิเตอร์ตัวที่ 1 x คือมุม หน่วยเป็นอินเรเดียน (2pi หมายถึง 360 องศา) พารามิเตอร์ที่ 2 และ 3 เป็นทางเลือก พารามิเตอร์ตัวที่ 2 คือ anndarray ตำแหน่งสำหรับเก็บผลลัพธ์

หากมีให้ จะต้องมีรูปร่างที่อินพุตถ่ายทอดไป หากไม่ได้ระบุหรือไม่มี ระบบจะส่งคืนอาร์เรย์ที่จัดสรรใหม่ ทูเพิล (เป็นไปได้เฉพาะในฐานะอาร์กิวเมนต์ของคีย์เวิร์ด) ต้องมีความยาวเท่ากับจำนวนเอาต์พุต

พารามิเตอร์ที่ 3 คือเงื่อนไขที่ออกอากาศผ่านอินพุต ที่ตำแหน่งที่เงื่อนไขเป็น True อาร์เรย์ out จะถูกตั้งค่าเป็นผลลัพธ์ ufunc ที่อื่น Out Array จะคงค่าเดิมไว้

ขั้นตอน

ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import numpy as np

รับโคไซน์ตรีโกณมิติ การหาโคไซน์ 90 องศา −

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

การหาโคไซน์ 60 องศา −

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

การหาโคไซน์ 45 องศา −

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

การหาโคไซน์ 30 องศา −

print("\nResult...",np.cos(np.pi/6.))

การหาโคไซน์ 0 องศา −

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

ตัวอย่าง

import numpy as np

# To find the Trigonometric cosine, use the numpy.cos() 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 cosine...")

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

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

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

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

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

ผลลัพธ์

Get the Trigonometric cosine...

Result... 6.123233995736766e-17

Result... 0.5000000000000001

Result... 0.7071067811865476

Result... 0.8660254037844387

Result... 1.0