返回 NumPy 中输入除法的结果,并向下取整到最大的整数
要返回输入除法的结果,并向下取整到最大的整数,请在 Python NumPy 中使用 **numpy.floor_divide()** 方法。它返回除法后的向下取整值。参数 1 被视为分子。参数 2 被视为分母。
out 是存储结果的位置。如果提供,则其形状必须是输入广播到的形状。如果未提供或为 None,则返回一个新分配的数组。元组(仅可能作为关键字参数)的长度必须等于输出的数量。
条件在输入上广播。在条件为 True 的位置,out 数组将设置为 ufunc 结果。在其他位置,out 数组将保留其原始值。请注意,如果通过默认的 out=None 创建了一个未初始化的 out 数组,则其中条件为 False 的位置将保持未初始化状态。
步骤
首先,导入所需的库 -
import numpy as np
创建一个数组 -
arr = np.array([14, 28, 56, 84, 56, 112])
显示数组 -
print("Array...
", arr)
获取数组的类型 -
print("
Our Array type...
", arr.dtype)
获取数组的维度 -
print("
Our Array Dimension...
",arr.ndim)
获取数组的形状 -
print("
Our Array Shape...
",arr.shape)
返回输入除法的结果,并向下取整到最大的整数,使用 numpy.floor_divide() 方法。它返回除法后的向下取整值。参数 1 被视为分子。参数 2 被视为分母 -
print("
Result...
",np.floor_divide(arr, 5))
示例
import numpy as np # Create an array arr = np.array([14, 28, 56, 84, 56, 112]) # 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 largest integer smaller or equal to the division of the inputs, use the numpy.floor_divide() method in Python Numpy # It returns the floor value after division # The parameter 1 is considered a Numerator # The parameter 2 is considered a Denominator print("
Result...
",np.floor_divide(arr, 5))
输出
Array... [ 14 28 56 84 56 112] Our Array type... int64 Our Array Dimension... 1 Our Array Shape... (6,) Result... [ 2 5 11 16 11 22]
广告