在 NumPy 中返回除法的逐元素余数
要返回除法的逐元素余数,请在 Python NumPy 中使用 **numpy.remainder()** 方法。这里,第一个参数是被除数数组。第二个参数是除数数组。
计算相对于 floor_divide 函数的余数。它等同于 Python 模运算符“x1 % x2”,并且与除数 x2 具有相同的符号。与 np.remainder 等效的 MATLAB 函数是 mod。
out 是存储结果的位置。如果提供,它必须具有输入广播到的形状。如果未提供或为 None,则返回一个新分配的数组。元组(仅作为关键字参数可能)必须具有与输出数量相等的长度。
步骤
首先,导入所需的库 -
import numpy as np
创建数组 -
arr = np.array([3, 9, 14, 22, 76, 81, 91])
显示数组 -
print("Array...
", arr)
获取数组的类型 -
print("
Our Array type...
", arr.dtype)
获取数组的维度 -
print("
Our Array Dimension...
",arr.ndim)
获取数组的形状 -
print("
Our Array Shape...
",arr.shape)
要返回除法的逐元素余数,请在 Python NumPy 中使用 numpy.remainder() 方法。这里,第一个参数是被除数数组。第二个参数是除数数组 -
print("
Result (remainder)...
",np.remainder(arr, 7))
示例
import numpy as np # Create an array arr = np.array([3, 9, 14, 22, 76, 81, 91]) # Display the array print("Array...
", arr) # Get the type of the array print("
Our Array type...
", arr.dtype) # Get the dimensions of the Array print("
Our Array Dimension...
",arr.ndim) # Get the shape of the Array print("
Our Array Shape...
",arr.shape) # To return the element-wise remainder of division, use the numpy.remainder() method in Python Numpy # Here, the 1st parameter is the Dividend array # The 2nd parameter is the Divisor array print("
Result (remainder)...
",np.remainder(arr, 7))
输出
Array... [ 3 9 14 22 76 81 91] Our Array type... int64 Our Array Dimension... 1 Our Array Shape... (7,) Result (remainder)... [3 2 0 1 6 4 0]
广告