Clear Filters
Clear Filters

DateTime equal but report not equal

2 views (last 30 days)
Time1=datetime('04:00:00','InputFormat',"HH:mm:ss");
Time2=datetime(0,0,0,4,0,0);
Time1~=Time2
ans =
logical
1

Accepted Answer

Star Strider
Star Strider on 25 Jul 2020
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
.

More Answers (0)

Categories

Find more on Dates and Time in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!