from cell to date
94 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Johannes Deelstra
el 3 de Jul. de 2017
Respondida: Guillaume
el 4 de Jul. de 2017
I have a cell variable 201624x1 with values for date from '01/01/1994 01' until '01/01/1994 01' How do I convert these into Matlab dates
Thanks
3 comentarios
per isakson
el 4 de Jul. de 2017
Editada: per isakson
el 4 de Jul. de 2017
- See Represent Dates and Times in MATLAB
- See Convert Between Datetime Arrays, Numbers, and Text
- What do you mean by "Matlab dates" ? An array of serial date numbers or a datetime array.
- Either 00 through 23 or 01 through 24. I prefer the former because 24 will automatically be converted to 00 of the following day.
Respuesta aceptada
Guillaume
el 4 de Jul. de 2017
datetime(yourcellarray, 'InputFormat', 'dd/MM/yyyy HH')
0 comentarios
Más respuestas (1)
Anushi1998
el 4 de Jul. de 2017
Use strfun and datetime functions for conversion
1 comentario
Guillaume
el 4 de Jul. de 2017
You probably mean cellfun. There is no strfun in base matlab. In any case, datetime can directly operate on a cell array so cellfun would not even be needed.
Ver también
Categorías
Más información sobre Dates and Time en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!