how do I add msec to datetime?

77 Ansichten (letzte 30 Tage)
Orel Levy
Orel Levy am 29 Dez. 2019
Kommentiert: Sreeraj T am 12 Mai 2022
Hello all.
I have a string array of times i'm trying to convert into datetime format.
the string array is as follows:
'12/24/2019 02:42:42:451 PM'
from it i take the parameters: year, month, day, hour (based on PM or AM), min, sec, msec.
and when trying to convert it into datetime using:
Ts = datetime(year,month,day,hour,min,sec,milli_sec,'InputFormat','yyyy-MM-dd HH:mm:ss.SSS');
I get:
datetime
24-Dec-2019 14:42:42
without the msec.
anyone knows why doesn't it take the msec into consideration?
  1 Kommentar
dpb
dpb am 29 Dez. 2019
In
Ts = datetime(year,month,day,hour,min,sec,milli_sec,'InputFormat','yyyy-MM-dd HH:mm:ss.SSS');
you're mixing the input text format of the original with numeric arguments...I'd be surprised that works...
There's no reason to go to the trouble of parsing the string first; read it as is but then drop 'Input' from the named argument to set the display format.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Akira Agata
Akira Agata am 29 Dez. 2019
Please set the display format to show millisecond, like:
>> Ts.Format = 'uuuu/MM/dd HH:mm:ss.SSS';
>> Ts
Ts =
datetime
2019/12/24 14:42:42.451
  2 Kommentare
Orel Levy
Orel Levy am 29 Dez. 2019
thanks, works perfect
Sreeraj T
Sreeraj T am 12 Mai 2022
Thanks a lot

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by