ในการปัดเศษเป็นจำนวนเต็มที่ใกล้ที่สุดให้เป็นศูนย์ ให้ใช้วิธี numpy.fix() ใน Python Numpy มันปัดเศษอาร์เรย์ของการลอยตัวขององค์ประกอบเป็นจำนวนเต็มที่ใกล้ที่สุดไปทางศูนย์ ค่าที่ปัดเศษจะถูกส่งกลับเป็นลอย พารามิเตอร์ที่ 1 x คืออาร์เรย์ของทุ่นที่จะปัดเศษ พารามิเตอร์ตัวที่ 2 out คือตำแหน่งที่เก็บผลลัพธ์ หากมีให้ ต้องมีรูปร่างที่อินพุตออกอากาศ หากไม่ได้ระบุหรือไม่มี ระบบจะส่งคืนอาร์เรย์ที่จัดสรรใหม่
เมธอดส่งคืนอาร์เรย์ float ที่มีขนาดเดียวกับอินพุต หากไม่มีอาร์กิวเมนต์ที่สอง อาร์เรย์ float จะถูกส่งกลับด้วยค่าที่ปัดเศษ หากมีการระบุอาร์กิวเมนต์ที่สอง ผลลัพธ์จะถูกเก็บไว้ที่นั่น ค่าที่ส่งกลับออกมาจะเป็นการอ้างอิงไปยังอาร์เรย์นั้น
ขั้นตอน
ขั้นแรก นำเข้าไลบรารีที่จำเป็น -
import numpy as np
สร้างอาร์เรย์ด้วยประเภท float โดยใช้วิธี array() -
arr = np.array([120.6, -120.6, 200.7, -320.1, 320.1, 500.6])
กำลังแสดงอาร์เรย์ของเรา -
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)
ในการปัดเศษเป็นจำนวนเต็มที่ใกล้ที่สุดให้เป็นศูนย์ ให้ใช้วิธี numpy.fix() ใน Python Numpy มันปัดเศษอาร์เรย์ของการลอยตัวขององค์ประกอบเป็นจำนวนเต็มที่ใกล้ที่สุดไปทางศูนย์ ค่าที่ปัดเศษจะถูกส่งกลับเป็นลอย -
print("\nResult (rounded)...\n",np.fix(arr))
ตัวอย่าง
import numpy as np # Create an array with float type using the array() method arr = np.array([120.6, -120.6, 200.7, -320.1, 320.1, 500.6]) # 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 Dimension...\n",arr.ndim) # Get the shape of the Array print("\nOur Array Shape...\n",arr.shape) # To round to nearest integer towards zero, use the numpy.fix() method in Python Numpy # It rounds an array of floats element-wise to nearest integer towards zero. The rounded values are returned as floats. print("\nResult (rounded)...\n",np.fix(arr))
ผลลัพธ์
Array... [ 120.6 -120.6 200.7 -320.1 320.1 500.6] Our Array type... float64 Our Array Dimension... 1 Our Array Shape... (6,) Result (rounded)... [ 120. -120. 200. -320. 320. 500.]