Effacer les filtres
Effacer les filtres

Change matrix dimensions and keep the order

3 vues (au cours des 30 derniers jours)
David du Preez
David du Preez le 10 Mai 2017
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

Réponse acceptée

Guillaume
Guillaume le 10 Mai 2017
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, []).'

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by