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

แปลงมุมจากองศาเป็นเรเดียนด้วย Python deg2rad()


ในการแปลงอาร์เรย์ดีกรีเป็นเรเดียน ให้ใช้เมธอด numpy.deg2rad() ใน Python Numpy ชุดรูปแบบจะคืนค่ามุมที่สอดคล้องกันเป็นเรเดียน นี่คือสเกลาร์ถ้า x เป็นสเกลาร์ พารามิเตอร์ที่ 1 คือมุมอินพุตในหน่วยองศา พารามิเตอร์ที่ 2 และ 3 เป็นทางเลือก

พารามิเตอร์ตัวที่ 2 คือ ndarray ซึ่งเป็นตำแหน่งที่เก็บผลลัพธ์ หากมีให้ต้องมีรูปร่างที่อินพุตออกอากาศไป หากไม่ระบุหรือไม่มี ระบบจะส่งคืนอาร์เรย์ที่จัดสรรใหม่

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

ขั้นตอน

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

import numpy as np

สร้างอาร์เรย์ -

arr = np.arange(12.)

กำลังแสดงอาร์เรย์ของเรา -

print("Array...\n",arr)

รับประเภทข้อมูล -

print("\nArray datatype...\n",arr.dtype)

รับขนาดของอาร์เรย์ -

print("\nArray Dimensions...\n",arr.ndim)

รับจำนวนขององค์ประกอบของอาร์เรย์ -

print("\nNumber of elements in the Array...\n",arr.size)

อาร์เรย์องศา -

res = arr*30

ในการแปลงอาร์เรย์ดีกรีเป็นเรเดียน ให้ใช้เมธอด numpy.deg2rad() ใน Python Numpy ชุดรูปแบบจะคืนค่ามุมที่สอดคล้องกันเป็นเรเดียน นี่คือสเกลาร์ถ้า x เป็นสเกลาร์ -

print("\nDegree array to degrees...\n",np.deg2rad(res))

ตัวอย่าง

import numpy as np

# Create an Array
arr = np.arange(12.)

# Display the array
print("Array...\n", arr)

# Get the type of the array
print("\nOur Array type...\n", arr.dtype)

# Get the dimensions of the Array
print("\nOur Array Dimensions...\n",arr.ndim)

# Get the number of elements in the Array
print("\nNumber of elements...\n", arr.size)

# Degree array
res = arr*30

# To convert a degree array to radians, use the numpy.deg2rad() method in Python Numpy
# The method returns the corresponding angle in radians. This is a scalar if x is a scalar.
print("\nDegree array to degrees...\n",np.deg2rad(res))

ผลลัพธ์

Array...
[ 0. 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11.]

Our Array type...
float64

Our Array Dimensions...
1

Number of elements...
12

Degree array to degrees...
[0. 0.52359878 1.04719755 1.57079633 2.0943951 2.61799388
3.14159265 3.66519143 4.1887902 4.71238898 5.23598776 5.75958653]