From vector to matrix

Hi,
I have a vector of size (1,60) and I want to convert it into a matrix of size (100,60), in wich every row is my initial vector. Can anyone tell me how to do it?
thanks.

 Accepted Answer

If A is your vector, then:
repmat(A,1,100)

More Answers (0)

Categories

Tags

Asked:

dpr
on 27 May 2012

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!