how to calculate time in matlab
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi, how can I write a time in matlab and add minutes to it. For example: how to write a time into the matrix a=[7:00 7:15 7:30] and how to add 60 seconds to 7:00 , 85sec to 7:15 and 136sec to 7:30
Thanks
댓글 수: 0
채택된 답변
Star Strider
2016년 5월 7일
This will work in R2013b:
a=['7:00'; '7:15'; '7:30'];
% How to add 60 seconds to 7:00 , 85sec to 7:15 and 136sec to 7:30
add = [60; 85; 136];
sec_per_day = 24*60*60;
Result = datestr(datenum(a, 'HH:MM') + add/sec_per_day, 'HH:MM:SS')
Result =
07:01:00
07:16:25
07:32:16
댓글 수: 3
추가 답변 (1개)
the cyclist
2016년 5월 7일
댓글 수: 2
the cyclist
2016년 5월 8일
According to the documentation, that functionality was introduced in version R2014b.
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!