Time format conversion command
조회 수: 1 (최근 30일)
이전 댓글 표시
This post is related to this thread:
If I want to convert
36:40.0
to
time in seconds, how do I do this?
댓글 수: 2
Matt Fig
2012년 10월 16일
What form is that? Is it a string and many in a character array or a cell array or what?
A = ['36:40.0';'36:41.0';'34:40.3']; % Like this?
A = {'36:40.0';'36:41.0';'34:40.3'}; % Like this?
채택된 답변
Azzi Abdelmalek
2012년 10월 16일
편집: Azzi Abdelmalek
2012년 10월 16일
t={'36:40.0' ,'37:40.0' ;'39:40.0' ,'31:40.0'}
out=cellfun(@(x) sum(cellfun(@str2double, regexp(x,'[:.]','split')).*[3600 60 1]),t)
댓글 수: 7
Azzi Abdelmalek
2012년 10월 18일
편집: Azzi Abdelmalek
2012년 10월 18일
Anthony, I suggest that you reformulate and repost your question, let it brief and very clear.
추가 답변 (1개)
Matt Fig
2012년 10월 16일
편집: Matt Fig
2012년 10월 16일
If you have a cell array, I would do this:
A = {'36:40.0';'36:40.1';'34:40.3'}; % A cell array
B = '${num2str(str2num($1)*60+str2num($2))}';
B = regexprep(A,'(\d+):(\d+\.\d*)',B)
If you have a character array, then:
A = ['36:40.0';'36:41.0';'34:40.3']; % A character array.
B = '${num2str(str2num($1)*60+str2num($2))}';
B = char(regexprep(cellstr(A),'(\d+):(\d+\.\d*)',B))
댓글 수: 3
Matt Fig
2012년 10월 16일
편집: Matt Fig
2012년 10월 16일
You seem to show where you converted to datenumbers using the DATENUM command. So why would it be surprising that you get datenumbers?
Show what this shows:
data{2}(1:3) % Or, what is in data{2}... strings?
If you don't see the strings in there, take the time to explore the data cell array before you run all these conversions on it. What is in data{1}? How about data{3}, etc...
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!