How to sum up numbers from .txt file
Ältere Kommentare anzeigen
I have a .txt file with precipitation data from one year as shown below. The columns shows year,month,day,hour,minute and the amount of precipitation.
2014,01,01,02,14,0.100
2014,01,01,02,24,0.100
2014,01,01,02,31,0.100
2014,01,01,02,44,0.100
2014,01,01,03,02,0.100
2014,01,01,03,29,0.100
2014,01,01,03,57,0.100
The precipitation has been measured each minute. I want to sum up the data so that I can find precipitation for 5 minutes, 30 minutes, 1 hour, 1 day and so on.
So for the data shown here, if I want to sum up the data for one hour I want to get an output like
2014,01,01,02,0.4
2014,01,01,03,0.3
I need this because I need to find the maximum precipitation for different time intervals during a year.
Akzeptierte Antwort
Weitere Antworten (1)
Sigrid Johansen
am 6 Feb. 2016
0 Stimmen
Kategorien
Mehr zu Weather and Atmospheric Science finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!