repsys
Replicate and tile models
Syntax
rsys = repsys(sys,[M N])
rsys = repsys(sys,N)
rsys = repsys(sys,[M N S1,...,Sk])
Description
replicates
the model rsys
= repsys(sys
,[M
N
])sys
into an M
-by-N
tiling
pattern. The resulting model rsys
has size(sys,1)*M
outputs
and size(sys,2)*N
inputs.
creates
an N-by-N tiling. rsys
= repsys(sys
,N
)
replicates
and tiles rsys
= repsys(sys
,[M
N
S1,...,Sk])sys
along both I/O and array dimensions
to produce a model array. The indices S
specify
the array dimensions. The size of the array is [size(sys,1)*M,
size(sys,2)*N, size(sys,3)*S1, ...]
.
Input Arguments
|
Model to replicate. |
|
Number of replications of |
|
Number of replications of |
|
Numbers of replications of |
Output Arguments
|
Model having If you provide array dimensions |
Examples
Tips
rsys = repsys(sys,N)
produces the same result
as rsys = repsys(sys,[N N])
. To produce a diagonal
tiling, use rsys = sys*eye(N)
.
Version History
Introduced in R2010b