在 Numpy 中將整數陣列元素的位向右移位
要將整數陣列元素的位向右移位,請在 Python Numpy 中使用 **numpy.right_shift()** 方法。位向右移動 x2 位。由於數字的內部表示形式為二進位制格式,因此此操作等效於將 x1 除以 2**x2。
x1 是輸入值。x2 是要從 x1 右側移除的位數。如果 x1.shape != x2.shape,則它們必須能夠廣播到一個共同的形狀。
函式 right_shift() 返回 x1,其位向右移動 x2 次。如果 x1 和 x2 都是標量,則這是一個標量。
步驟
首先,匯入所需的庫 -
import numpy as np
建立一個一維陣列 -
arr = np.array([56, 87, 23, 92, 81, 98, 45, 98])
顯示我們的陣列 -
print("Array...
",arr)
獲取資料型別 -
print("
Array datatype...
",arr.dtype)
獲取陣列的維度 -
print("
Array Dimensions...
",arr.ndim)
獲取陣列的形狀 -
print("
Our Array Shape...
",arr.shape)
獲取陣列的元素數量 -
print("
Elements in the Array...
",arr.size)
右移位的次數 -
valRight = 3
要將整數陣列元素的位向右移位,請在 Python Numpy 中使用 numpy.right_shift() 方法 -
print("
Result (right shift)...
",np.right_shift(arr, valRight))
示例
import numpy as np # Create a One-Dimensional array arr = np.array([56, 87, 23, 92, 81, 98, 45, 98]) # Displaying our array print("Array...
",arr) # Get the datatype print("
Array datatype...
",arr.dtype) # Get the dimensions of the Array print("
Array Dimensions...
",arr.ndim) # Get the shape of the Array print("
Our Array Shape...
",arr.shape) # Get the number of elements of the Array print("
Elements in the Array...
",arr.size) # The count of right shift valRight = 3 # To shift the bits of an integer to the right, use the numpy.right_shift() method in Python Numpy print("
Result (right shift)...
",np.right_shift(arr, valRight))
輸出
Array... [56 87 23 92 81 98 45 98] Array datatype... int64 Array Dimensions... 1 Our Array Shape... (8,) Elements in the Array... 8 Result (right shift)... [ 7 10 2 11 10 12 5 12]
廣告