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