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


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


numpy.matlib.repmat()是另一個用於在numpy中進行矩陣運算的函數。它返回重複0-D,1-D或2-D數組或矩陣M x N次。

用法: numpy.matlib.repmat(a, m, n)

參數:
a :[數組]要重複的輸入數組或矩陣。
m,n:[int]沿第一軸和第二軸重複的次數。


Return :[ndarray]重複數組。

代碼1:

# Python program explaining 
# numpy.matlib.repmat() function 
  
# importing numpy and matrix library 
import numpy as geek 
import numpy.matlib 
  
# creating input array using   
# array function  
in_arr = geek.array([[1, 0, 2], [3, 4, 5]]) 
print("Input array", in_arr)  
  
# making a new array  
# using repmat() function  
out_mat = geek.matlib.repmat(in_arr, 2, 3)  
print ("Output repeated matrix:", out_mat) 
輸出:
Input array [[1 0 2]
 [3 4 5]]
Output repeated matrix: [[1 0 2 1 0 2 1 0 2]
 [3 4 5 3 4 5 3 4 5]
 [1 0 2 1 0 2 1 0 2]
 [3 4 5 3 4 5 3 4 5]]

代碼2:

# Python program explaining 
# numpy.matlib.repmat() function 
  
# importing numpy and matrix library 
import numpy as geek 
import numpy.matlib 
  
# creating input array using   
# arange function  
in_arr = geek.arange(3) 
print("Input array", in_arr)  
  
# making a new array  
# using repmat() function  
out_mat = geek.matlib.repmat(in_arr, 2, 2)  
print ("Output repeated matrix:", out_mat) 
輸出:
Input array [0 1 2]
Output repeated matrix: [[0 1 2 0 1 2]
 [0 1 2 0 1 2]]


相關用法


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