📜  Python| numpy.array_split() 方法

📅  最后修改于: 2022-05-13 01:55:10.348000             🧑  作者: Mango

Python| numpy.array_split() 方法

借助numpy.array_split()方法,我们可以使用numpy.array_split()方法得到不同维度的分割数组。

示例 #1:
在这个例子中,我们可以看到通过使用numpy.array_split()方法,我们可以通过将数组作为参数传递来将数组拆分为子数组的数量。

# import numpy
import numpy as np
  
array = np.arange(9)
  
# using numpy.array_split() method
gfg = np.array_split(array, 4)
  
print(gfg)

输出 :

示例 #2:

# import numpy
import numpy as np
  
array = [[1, 2, 3],
         [4, 5, 6],
         [7, 8, 9]]
  
# using numpy.array_split() method
gfg = np.array_split(array, 3)
  
print(gfg)

输出 :