Counting days by month
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
dan berkowitz
el 22 de Oct. de 2017
Comentada: Andrei Bobrov
el 23 de Oct. de 2017
hi,
i have a 100x11 char array with dates (e.g. '03-Jan-2006'). how can i create an array with the number of days in each unique month that appear in my date array. (e.g. if i have two days in january 2006, then i want it to return 2). any help would be appreciated. thx in advance.
DB
0 comentarios
Respuesta aceptada
Andrei Bobrov
el 22 de Oct. de 2017
Editada: Andrei Bobrov
el 22 de Oct. de 2017
Here A - your array "100x11 char array with dates (e.g. '03-Jan-2006')"
z = datetime(A);
T = table(datetime(z,'F','MMM-uuuu'),eomday(year(z),month(z)),'v',{'date','days'});
4 comentarios
Ver también
Categorías
Más información sobre Dates and Time en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!