Construct data matrix from single column

1 view (last 30 days)
Hello
I am stuck with one problem: I have one column has 31000 observations , and need to get each consecutive 62 rows from that column and put in a new matrix , so at the end I will have 62 X 500 matrix. For example I will take first 62 observations from the column of 31000 and this will be my fist column in my new matrix , then the next 62 from the column of 31000 as my second column in my new matrix ... continue up to the last 62 observations in my 310000 obs.
Toy Example
x=[1;2;3;4;5;6;7;8;9;10]
so from X I will take each 2 rows and make it as one column in a new matrix Y, so I will have my Y matrix like this y=[1 3 5 7 9;2 4 6 8 10]
Thank you in advance.

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 24 Apr 2014
reshape(A,62,500)

More Answers (0)

Community Treasure Hunt

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

Start Hunting!