(translator=Shilo, ChineseSource=Shilo-20020415-2.5\repmat.html, EnglishSource=c:\matlabr12\help\techdoc\ref\repmat.html)
MATLAB Function Reference    
repmat

複製陣列

Syntax

Description

B = repmat(A,m,n) 矩陣 B包含 m x n 個的複製 Arepmat(A,n) 產生包含 n x n 個複製 A 的矩陣。

B = repmat(A,[m n]) 同於 repmat(A,m,n)

B = repmat(A,[m n p...]) 產生一個包含複製 A 的多維(m x n x p x ...)陣列。A 可以是多維的。

repmat(A,m,n) A 為純量時,會產生一個元素值為 A、維度為 m x n 的矩陣。當 mn 較大時,其運算速度較 a*ones(m,n) 快。

Examples

在下面的例子中,repmat 複製 12 份二階單位矩陣產生棋盤圖形。

陳述式 N = repmat(NaN,[2 3]) 產生一個元素為 NaN、維度為 2 x 3 的矩陣。


 rem reset