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


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


numpy.matlib.ones()是另一個用於在numpy中進行矩陣運算的函數。它返回給定形狀和類型的矩陣,並填充為1。

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

參數:
shape :[int,int]輸出矩陣中的行數和列數。如果shape的長度為1,即(N,),或者是標量N,則out變為形狀為(1,N)的單行矩陣。
dtype :[可選]所需的輸出數據類型。
order:在內存中是以行優先(C-style)還是列主要(Fortran-style)順序存儲多維數據。


Return :給定形狀,dtype和順序的矩陣。

代碼1:

# Python program explaining 
# numpy.matlib.ones() function 
  
# importing matrix library from numpy 
import numpy as geek 
import numpy.matlib 
  
# desired 3 x 4 output matrix  
out_mat = geek.matlib.ones((3, 4))  
print ("Output matrix:", out_mat) 
輸出:
Output matrix: Output matrix: [[ 1.  1.  1.  1.]
 [ 1.  1.  1.  1.]
 [ 1.  1.  1.  1.]]

代碼2:

# Python program explaining 
# numpy.matlib.ones() function 
  
# importing numpy and matrix library 
import numpy as geek 
import numpy.matlib 
  
# desired 1 x 5 output matrix  
out_mat = geek.matlib.ones(shape = 5, dtype = int)  
print ("Output matrix:", out_mat) 
輸出:
Output matrix: [[1 1 1 1 1]]


相關用法


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