I think it should be very easy, but i don´t know how to a append a vector by his own within a loop.
For example:
a = [1 2 3] I would like to have:
b = [1 2 3 1 2 3 1 2 3] So, there must be an empty array where i append the a vector 3 times via a loop?
b=repmat(a,1,3)