How to convert 15minute data to hourly data
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ritika Srinivasan
le 30 Juil 2021
Commenté : Ritika Srinivasan
le 1 Août 2021
Hi , I have 15 minute power output data for a Pv powerplant over a year. I would like to convert it into hourly data. I imported the raw data through an excel file into the matlab live script. now I am unsure how to combine the values![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/698942/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/698942/image.png)
0 commentaires
Réponse acceptée
Lucien Hollins
le 30 Juil 2021
Hi I understand you would like to learn about managing table data. Please refer to this documentation to learn the basics of dealing with tables:
I believe for your specific case, you would like to extract every fourth value. To do this, you can try the following command:
Reduceddata = Rawmasterdata(1:4:end,:);
This will generate a new variable called Reduceddata that begins at your first data point and includes every fourth point afterwards. If you would like to start at a different data point (e.g. on the hour mark), you can change the command to
Reduceddata = Rawmasterdata(4:4:end,:);
If instead you would prefer to take the hourly averaged data, you may find the following MATLAB answer helpful:
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Dates and Time 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!