📅  最后修改于: 2020-06-01 12:16:24             🧑  作者: Mango
numpy.empty(shape,dtype = float,order =’C’):返回具有给定形状和类型且具有随机值的新数组。
参数:
-> shape:行数 -> order: C_contiguous或F_contiguous -> dtype: [可选,float(默认)]返回数组的数据类型。
# Python编程说明numpy.empty方法
import numpy as geek
b = geek.empty(2, dtype = int)
print("Matrix b : \n", b)
a = geek.empty([2, 2], dtype = int)
print("\nMatrix a : \n", a)
c = geek.empty([3, 3])
print("\nMatrix c : \n", c)
输出:
矩阵b:
[0 1079574528]
矩阵a:
[[0 0]
[0 0]
矩阵a:
[[0. 0. 0.]
[0. 0. 0.]
[0. 0. 0.]]
注意:与零不同,空值不会将数组值设置为零,因此可能会稍快一些。