标签:block href size rand type 数据处理 一个 and class
创建随机整数array。
np.random.randint(10,size=(2,3))
randint(low, high=None, size=None, dtype=‘l‘)
low为必选参数:
low
, high
)。low
)之间。返回:返回一个ndarray,或一个整数int(若没有给size参数时)。
np.random.randint(100,size=(1))
np.random.randint(100)
array([3])
21
压成一个向量。
np.sort(a, axis = 0)
>>> a = np.array([[3,7],[9,1]])
>>> np.sort(a) #默认是按行排列的,即在vector内部排列元素
array([[3, 7],
[1, 9]])
>>> np.sort(a, axis = 0) # axis=0,按列排
array([[3, 1],
[9, 7]])
>>> np.sort(a, axis = 1)
array([[3, 7],
[1, 9]])
标签:block href size rand type 数据处理 一个 and class
原文地址:https://www.cnblogs.com/zzai/p/numpy.html