When plotting datetime seconds are displayed as miliseconds

10 views (last 30 days)
Hi
I have data in a time table, the datetime is formatted as MM/dd/yyyy HH:mm:SS. When plotting the data using plot (not stackedplot) it seems that the seconds are not displayed correctly (considered as milliseconds instead of seconds perhaps). Please see attached fig and zoom in. How can this be corrected.
Thanks

Accepted Answer

Stephen23
Stephen23 on 21 Feb 2022
"How can this be corrected."
Use the correct format (possibly when importing the data, we do not know how you defined those datetime objects):
MM/dd/yyyy HH:mm:SS
% ^^ fractions of a second, what you used.
MM/dd/yyyy HH:mm:ss
% ^^ seconds, the correct format.

More Answers (0)

Categories

Find more on Dates and Time in Help Center and File Exchange

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!