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


Python numpy matrix empty()用法及代碼示例


numpy.matlib.empty()是另一個在numpy中執行矩陣運算的函數,它返回給定形狀和類型的新矩陣,而無需初始化條目。

用法: numpy.matlib.empty(shape, dtype=None, order=’C’)

參數:
shape :[int的int或元組]所需的輸出空矩陣的形狀。
dtype :[可選]所需的輸出數據類型。
order:在內存中是以行優先(C-style)還是列主要(Fortran-style)順序存儲多維數據。


Return :給定形狀和類型的新矩陣,

代碼1:

# Python program explaining 
# numpy.matlib.empty() function 
  
# importing numpy and matrix library 
import numpy as geek 
import numpy.matlib 
  
# desired output matrix  
out_mat = geek.matlib.empty((2, 3))  
print ("Output matrix:", out_mat) 
輸出:
Output matrix: [[  6.93621940e-310   2.43141878e-316   6.93621669e-310]
 [  6.93621669e-310   6.93621553e-310   6.93621553e-310]]

代碼2:

# Python program explaining 
# numpy.matlib.empty() function 
  
# importing numpy and matrix library 
import numpy as geek 
import numpy.matlib 
  
# desired output matrix  
out_mat = geek.matlib.empty((2, 3), dtype = int, order = 'C')  
print ("Output matrix:", out_mat) 
輸出:
Output matrix: [[140133380791224 140133380791224 140133356100528]
 [140133356100336 140133356100592 140133343343704]]


相關用法


注:本文由純淨天空篩選整理自jana_sayantan大神的英文原創作品 numpy matrix operations | empty() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。