Change matrix dimensions and keep the order
1 次查看(过去 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!