DateTime equal but report not equal

2 次查看(过去 30 天)
Time1=datetime('04:00:00','InputFormat',"HH:mm:ss");
Time2=datetime(0,0,0,4,0,0);
Time1~=Time2
ans =
logical
1

采纳的回答

Star Strider
Star Strider 2020-7-25
They are not the same:
Time1=datetime('04:00:00','InputFormat',"HH:mm:ss")
Time2=datetime(0,0,0,4,0,0)
produces:
Time1 =
datetime
25-Jul-2020 04:00:00
and:
Time2 =
datetime
30-Nov--0001 04:00:00
.

更多回答(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