フィルターのクリア

datetime() does not return time data

10 ビュー (過去 30 日間)
Emily T. Griffiths
Emily T. Griffiths 2022 年 10 月 26 日
コメント済み: Steven Lord 2022 年 10 月 27 日
Hello all,
I just noticed a bug in my code that my datetime function is not converting time data from the character string.
My code is the following:
DTstart = datetime("2021-11-16 11:48:00", "InputFormat","yyyy-MM-dd HH:mm:ss");
This has worked on all versions of matlab without fail. However, I just updated to 2022b. Now when I run this, instead of getting:
DTstart =
datetime
16/11/2021 11:48:00
I get simply:
DTstart =
datetime
16/11/2021
This is causing a HUGE headache in my code. I need to look at thing by the second. It doesn't matter if I run the text as a string or a character. Everytime I try to search for an alternative, I just get redirected to the datetime function. Can someone please explain to me why this function is no longer working, or perhaps suggest an alternative?

採用された回答

Steven Lord
Steven Lord 2022 年 10 月 26 日
In the Preferences, expand the MATLAB item in the tree. Select the Command Window item. What does it list for the default datetime display formats? Did you accidentally change the default?
  2 件のコメント
Emily T. Griffiths
Emily T. Griffiths 2022 年 10 月 27 日
Oh my goodness. Thank you so much. I wasn't aware this could change. Like I said, I just updated, so perhaps I clicked something during the install. Relieved to know the data is still there!
Steven Lord
Steven Lord 2022 年 10 月 27 日
Even if you'd changed the display format, the data was still present in the variable.
DTstart = datetime("2021-11-16 11:48:00", ...
"InputFormat","yyyy-MM-dd HH:mm:ss", ...
'Format', 'yyyy-MM-dd')
DTstart = datetime
2021-11-16
You can see this by asking for the time of day stored in DTstart.
timeofday(DTstart)
ans = duration
11:48:00

サインインしてコメントする。

その他の回答 (1 件)

Voss
Voss 2022 年 10 月 26 日
Try specifying the Format (in addition to the InputFormat):
DTstart = datetime("2021-11-16 11:48:00","InputFormat","yyyy-MM-dd HH:mm:ss",'Format','dd/MM/yyyy')
DTstart = datetime
16/11/2021
DTstart = datetime("2021-11-16 11:48:00","InputFormat","yyyy-MM-dd HH:mm:ss",'Format','dd/MM/yyyy HH:mm:ss')
DTstart = datetime
16/11/2021 11:48:00
  1 件のコメント
Emily T. Griffiths
Emily T. Griffiths 2022 年 10 月 27 日
I had tried this, but as seen above, it was a display issue. :)

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by