📜  Python中的 numpy.empty()

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

Python中的 numpy.empty()

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.]]

注意: empty 与 zeros 不同,不会将数组值设置为零,因此可能会稍微快一些。
此外,这些代码不会在 online-ID 上运行。请在您的系统上运行它们以探索工作