Remove time from datetime
36 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
vidit kedia
el 21 de En. de 2021
Comentada: vidit kedia
el 21 de En. de 2021
I would like to remove the time from a datetime element, without using the .Format = 'dd-MMM-yyy', as this only chages the display format but the time component is still present in the element.
0 comentarios
Respuesta aceptada
Steven Lord
el 21 de En. de 2021
Editada: Steven Lord
el 21 de En. de 2021
Use timeofday to create a duration array containing the time since midnight for each of the datetime arrays.
rightNow = datetime('now')
timeSinceMidnight = timeofday(rightNow)
And since I'm guessing you may be trying to "split" the datetime:
todaysDate1 = dateshift(rightNow, 'start', 'day') % or
todaysDate2 = rightNow - timeSinceMidnight
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!