Filter löschen
Filter löschen

Time data conversion

2 Ansichten (letzte 30 Tage)
jason beckell
jason beckell am 25 Jan. 2012
Hello to everybody!
I have a very simple question. Assuming that I have the following data
tn = datestr(t2-t1,'yyyy-mm-dd HH:MM:SS FFF')
tn =
2012-01-25 16:11:10 645
is there in Matlab a routine which automicatically translates into milliseconds? Thank you very much!
Jason.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 25 Jan. 2012
Your question is not quite clear about what you want. One interpretation would be that you want
(t2 - t1) * (24 * 60 * 60 * 1000)
That is, serial date numbers are in full days, so multiply by 24 * 60 * 60 * 1000 to get the time difference as milliseconds.

Weitere Antworten (1)

Andrew Newell
Andrew Newell am 25 Jan. 2012
Here are two conversions you could do:
datevec('2012-01-25 16:11:10 645','yyyy-mm-dd HH:MM:SS FFF')
datenum('2012-01-25 16:11:10 645','yyyy-mm-dd HH:MM:SS FFF')

Kategorien

Mehr zu Dates and Time 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