How to extract Month string from day_Month_Year time variable and create a new quarterly time index?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
mirewuti muhetaer
el 7 de Nov. de 2019
Comentada: Shubham Gupta
el 8 de Nov. de 2019
Hi, i have a time index in this following format: day_month_year, for example, Oct_01_2019, how will i extract the months and create a new variable of months or quarter?.
Thanks. .
0 comentarios
Respuesta aceptada
Shubham Gupta
el 7 de Nov. de 2019
If I understand the question correctly, this should work :
Month_variable = datestr(datenum('Oct_01_2019'),'mm');
I hope it helps !
2 comentarios
Shubham Gupta
el 8 de Nov. de 2019
In that case, datevec() might be a better option.
Read more about it here.
Más respuestas (0)
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!