Construct data matrix from single column

조회 수: 1 (최근 30일)
ABDULAZIZ
ABDULAZIZ 2014년 4월 24일
댓글: ABDULAZIZ 2014년 4월 24일
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.

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 4월 24일
reshape(A,62,500)
  댓글 수: 1
ABDULAZIZ
ABDULAZIZ 2014년 4월 24일
Wow. Thank you very so much 100%

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matched Filter and Ambiguity Function에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by