Change matrix dimensions and keep the order
조회 수: 4 (최근 30일)
이전 댓글 표시
I have a 1 x 744 matrix that contains hourly data for one month. The 24 columns contain the data for one day the next 24 for the next day so on. I want to change to a matrix of 31 x 24 so that I would have the 31 days of data below each other
댓글 수: 0
채택된 답변
Guillaume
2017년 5월 10일
Use reshape. Because matlab is column-major and you want your data in row-major order, you'll reshape into 24 rows and then transpose:
result = reshape(yourmatrix, 24, []).'
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!