How to define a time array with equal increment
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi I need to define a duration array with equal increments
for example duration = [00:00:00 00:05:00 00:10:00 00:15:00 00:20:00 00:25:00....................23:55:00]
how can I do this in MATLAB
Thanks
0 commentaires
Réponse acceptée
Star Strider
le 3 Déc 2015
One possibility:
start = fix(now);
increment = 5/(60*24); % Five-Minute Increments
time_vct = 0:increment:(1-increment); % Vector
time_str = datestr(start + time_vct, 'HH:MM:SS'); % Date Strings
ViewResult = [time_str(1:5,:); time_str(end-4:end,:)]
ViewResult =
00:00:00
00:05:00
00:10:00
00:15:00
00:20:00
23:35:00
23:40:00
23:45:00
23:50:00
23:55:00
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Structures dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!