📜  生成随机整数矩阵python代码示例

📅  最后修改于: 2022-03-11 14:45:36.275000             🧑  作者: Mango

代码示例1
import numpy as np

randi_arr = np.random.randint(start, end, dimensions)
#random integers will be sampled from [start, end) (end not inclusive)
#end is optional; if end is not specified, random integers will be sampled from [0, start) (start not inclusive)
#dimensions can be specified as shown here; (m,n) #2D array with size 'm x n'