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

แปลงอาร์เรย์เรเดียนเป็นองศาใน Python


ในการแปลงอาร์เรย์เรเดียนเป็นองศา ให้ใช้เมธอด numpy.degrees() ใน Python Numpy พารามิเตอร์ที่ 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*np.pi/6

ในการแปลงอาร์เรย์เรเดียนเป็นองศา ให้ใช้เมธอด numpy.degrees() ใน Python Numpy พารามิเตอร์ที่ 1 เป็นอาร์เรย์อินพุตเป็นเรเดียน -

print("\nRadian array to degrees...\n",np.degrees(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)

# Radian array
res = arr*np.pi/6

# To convert a radian array to degrees, use the numpy.degrees() method in Python Numpy
print("\nRadian array to degrees...\n",np.degrees(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

Radian array to degrees...
[ 0. 30. 60. 90. 120. 150. 180. 210. 240. 270. 300. 330.]