date time to datenum

2 次查看(过去 30 天)
Poulomi Ganguli
Poulomi Ganguli 2017-8-15
编辑: Stephen23 2017-8-15
I have an array of time series in the format dd-mm-yyyy hh:mm:ss, I want to convert it to datenum:
'29-May-1930 00:00:00'
'29-May-1930 01:00:00'
'29-May-1930 02:00:00'
'29-May-1930 03:00:00'
'29-May-1930 04:00:00'
'29-May-1930 05:00:00'
'29-May-1930 06:00:00'
'29-May-1930 07:00:00'
'29-May-1930 08:00:00'
'29-May-1930 09:00:00'
'29-May-1930 10:00:00'
How to do so?

采纳的回答

Adam
Adam 2017-8-15
What is wrong with the obvious
res = datenum( yourData );
?
  2 个评论
Poulomi Ganguli
Poulomi Ganguli 2017-8-15
Earlier, I put 'Inputformat','yyyy-mm-dd' and was getting error messages.
Stephen23
Stephen23 2017-8-15
编辑:Stephen23 2017-8-15
@Poulomi Ganguli: Did you notice that yyyy-mm-dd is arranged in a totally different order to your dates? And is missing the hour, minute, and second units? Instead of guessing what format string to use and getting it wrong, you could simply read the documentation:
and then try:
dd-mmm-yyyy HH:MM:SS
For example:
>> datenum('29-May-1930 00:00:00','dd-mmm-yyyy HH:MM:SS')
ans = 705067

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Dates and Time 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by