How to find the difference b/w two string time and to convert in to seconds.

조회 수: 8 (최근 30일)
In my code time data is as given below. eg. '12.56.13' 12.57.39'. Now how to find the difference b/w the two given time and to convert the obtained value in to seconds. How to pass the obtained seconds to timer. I am having time data of size 45 lake rows. I want efficient way to find the above.
Regards Manu M.J

채택된 답변

Walter Roberson
Walter Roberson 2011년 6월 8일
datenum() the strings, subtract. To convert the time difference to seconds, multiply by 24*60*60 (number of seconds in a day). To "pass" the obtained seconds to a timer, set the timer StartDelay property to that number of seconds -- and remember to start() the timer.

추가 답변 (2개)

Jan
Jan 2011년 6월 8일
More efficient than DATENUM:
t1 = '12.56.13';
t2 = '12.57.39';
t1num = [3600, 60, 1] * sscanf(t1, '%d.');
t2num = [3600, 60, 1] * sscanf(t2, '%d.');
tdiff = t2num - t1num;
I do not know what "45 lake rows" are, but you can adjust the above method to all kind of inputs.
  댓글 수: 2
Andrei Bobrov
Andrei Bobrov 2011년 6월 8일
if
>> t = ['12.56.13'; '12.57.39'];
then
>> tsec = arrayfun(@(x)[3600 60 1]*sscanf(t(x,:),'%d.'),1:size(t,1)).';
Manu MJ
Manu MJ 2011년 6월 8일
Thank u so much.
It helped me lot.

댓글을 달려면 로그인하십시오.


Manu MJ
Manu MJ 2011년 6월 8일
Datenum('12.36.15') is not functioning. Error is appearing as:
Error using ==> datenum at 174
DATENUM failed.
Caused by: Error using ==> datevec at 286 Cannot parse date 2.3.4

카테고리

Help CenterFile Exchange에서 Time Series Objects에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by