find groups in datetime vector by date
14 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Senne Van Minnebruggen
il 22 Mag 2020
Commentato: Senne Van Minnebruggen
il 22 Mag 2020
I am trying to find groups by date (dd/MM/yyyy) in a datetime vector (dd/MM/yyyy HH:mm:ss).
Herefor i tried changing the datetime format to dd/MM/yyyy and then use the findgroups function. But then each element in the datetime vector is identified as a single group. Next i tried to use g = findgroups(day(Datetimevector)). But then it is grouped by day of the month which is not the desired outcome.
How can i find groups by date in my datetime vector?
0 Commenti
Risposta accettata
Rik
il 22 Mag 2020
Modificato: Rik
il 22 Mag 2020
Datetimevector=datetime([2020 2020 2020],[02 02 10],[3 3 4],[10 11 12],[0 0 0],[0 0 0]);
rounded_to_day=datetime(year(Datetimevector),month(Datetimevector),day(Datetimevector));
g = findgroups(rounded_to_day);
Or use the older representation datenum:
rounded_to_day=floor(datenum(Datetimevector));
g = findgroups(rounded_to_day);
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Dates and Time in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!