當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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

注意:與零不同,為空不會將數組值設置為零,因此可能會稍快一些。
此外,這些代碼也無法在online-ID上運行。請在您的係統上運行它們以探索工作原理




相關用法


注:本文由純淨天空篩選整理自 numpy.empty() in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。