Does anyone know to convert clock time into decimal time?
이전 댓글 표시
Exampler of the data 845 is 8:45 and I want it 875 ( decimal time).
답변 (2개)
Star Strider
2016년 9월 8일
See if this does what you want:
t_d = @(t) (fix(t/100) + rem(t,100)/60)*100; % Anonymous Function
t_hm = 845; % Time To Be ‘Converted’
out = t_d(t_hm) % Desired Result
out =
875
George
2016년 9월 8일
0 개 추천
카테고리
도움말 센터 및 File Exchange에서 Programming에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!