Borrar filtros
Borrar filtros

How to change [jul15,jul16,jul17] to [7.15,7.16,7.17]?

2 visualizaciones (últimos 30 días)
xander fong
xander fong el 21 de Jul. de 2015
Respondida: Guillaume el 21 de Jul. de 2015
Hello, so I have a vertical array of imported excel data that are in the format "Jul15, Jul16, Jul17, etc..." I would like to know how to change every element to its respective date in number format ("7.15,7.16.7.17). I think that one way to approach this would be to first insert a space after the third character, then it would be easier to manipulate

Respuesta aceptada

Guillaume
Guillaume el 21 de Jul. de 2015
No need to insert spaces, just specify the correct format strings:
x = ['Jul15'; 'Jul16'; 'Aug06'; 'Dec24'];
newx = datestr(datevec(x, 'mmmdd'), 'mm.dd')
Note that your new format is actually worse than the original as it is ambiguous as to which number is the month and which is the day (is it 8th of june or 6th of august?)

Más respuestas (0)

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by