필터 지우기
필터 지우기

Matlab time cell with 1 second interval

조회 수: 1 (최근 30일)
buer
buer 2015년 3월 31일
댓글: Andrei Bobrov 2015년 3월 31일
Hi,
I have one problem with date cell, I want the date in 1 second interval:
start_date=06-Jul-2011 15:20:00
end_date=06-August-2011 15:25:00 interval = 1/60/24/60; % 1 second date = datestr(start_date:interval:end_date);
However it is too slow... I think it maybe easy if just by filling in all time with 1 second interval... Is there any other way?
Thanks a lot.

채택된 답변

Andrei Bobrov
Andrei Bobrov 2015년 3월 31일
편집: Andrei Bobrov 2015년 3월 31일
start_date='06-Jul-2011 15:20:00'
end_date='06-Aug-2011 15:25:00'
n = datenum({start_date;end_date},'dd-mmm-yyyy HH:MM:SS');
k = floor(diff(n)/(1/24/3600));
n1 = num2cell(datevec(n(1)));
s = datenum(n1{1:5},(0:k)');
out = datestr(s,'dd-mmm-yyyy HH:MM:SS');
  댓글 수: 2
buer
buer 2015년 3월 31일
편집: buer 2015년 3월 31일
Thanks for the reply....this works, but it looks like no faster way to do it...long time wait ...is it possible to work on '06-Jul-2011 15:20:00' kind of format diretly without converting to datenum....
Andrei Bobrov
Andrei Bobrov 2015년 3월 31일
Use
out = datevec(s); % instead of 'out = datestr(s,'dd-mmm-yyyy HH:MM:SS');'

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Dates and Time에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by