changing the format of a cell matrix

조회 수: 2 (최근 30일)
ektor
ektor 2019년 1월 29일
답변: Walter Roberson 2019년 1월 29일
Dear all,
I have this cell matrix 'data', where as you can see below the element for example 8:00:06 is the hour-minute-second.
data(1:3,:)
ans =
3×1 cell array
{'01 8:00:06 29.0000 1000'}
{'01 8:00:06 29.1000 200'}
{'01 8:02:08 29.0700 1000'}
Now I want to convert the above matrix to the folowing format
01 8 00 06 29.000 1000
01 8 00 06 29.1000 200
01 8 02 08 29.0700 1000
Is there any way to do that in matlab? Can I have a sample code?
Many thanks

채택된 답변

Walter Roberson
Walter Roberson 2019년 1월 29일
cell2mat(cellfun(@(S) sscanf(S, '%f %f:%f:%f %f %f').',data,'uniform', 0))

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by