3 lines
62 B
Matlab
3 lines
62 B
Matlab
function S = repeat(s , n)
|
|
S = repmat(s , [1,n]) ;
|
|
return
|
function S = repeat(s , n)
|
|
S = repmat(s , [1,n]) ;
|
|
return
|