numpy.empty(shape,dtype = float,order ='C'):返回具有给定形状和类型且具有随机值的新数组。
参数:
-> shape : Number of rows -> order : C_contiguous or F_contiguous -> dtype : [optional, float(by Default)] Data type of returned array.
# Python Programming illustrating
# numpy.empty method
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)
输出:
Matrix b : [ 0 1079574528] Matrix a : [[0 0] [0 0]] Matrix a : [[ 0. 0. 0.] [ 0. 0. 0.] [ 0. 0. 0.]]
注意:与零不同,为空不会将数组值设置为零,因此可能会稍快一些。
此外,这些代码也无法在online-ID上运行。请在您的系统上运行它们以探索工作原理
相关用法
注:本文由纯净天空筛选整理自 numpy.empty() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。