What I am trying to achieve is that I have a matrix like that:
axy
axy
axy
axy
And I want to expand that matrix so that it will become:
aaaxxxyyy
aaaxxxyyy
aaaxxxyyy
aaaxxxyyy
Is there a function that I can use to manage this transformation easily? I would like to use a better way than tiling each column separately and appending them back.
Thanks in advance.