Seconds counter within a day?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
pavlos
am 3 Feb. 2016
Beantwortet: Walter Roberson
am 3 Feb. 2016
Hello,
Please help me with the following:
I need to count the seconds from one period to another within a day.
For example,
the start point would be 00:00:01
and the final point would be (for example)
18:06:00
Thank you.
Best,
Pavlos
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 3 Feb. 2016
t = datenum('18:06:00') - datenum('00:00:01');
seconds = t * 24 * 60 * 60;
0 Kommentare
Weitere Antworten (0)
Siehe auch
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!