how to read mixed date and data
이전 댓글 표시
How to read this data file:
2020/11/15 07:30:55 27.50 124
2020/11/15 07:40:55 27.63 114
2020/11/15 07:50:55 27.71 95
채택된 답변
추가 답변 (1개)
the cyclist
2021년 9월 24일
0 개 추천
You can specify the input formating if needed.
댓글 수: 4
DwiNY
2021년 9월 25일
the cyclist
2021년 9월 25일
NaT means "Not-aTime", and you will typically get this error if some of the times are a different format from what you have specified.
Can you upload the data, or a small sample that has some rows that worked, and some rows that gave NaT?
DwiNY
2021년 9월 27일
Jeremy Hughes
2021년 9월 27일
If you're using format, there are issues with your format in both cases: mm cannot be both months and minutes, you want MM.
Also, you probably want the second part as duration if you're parsing these as separate fields.
try this: formatSpec = '%{yyyy/MM/dd}D{hh:mm:ss}T%f%f'
But I like your first approach better:
delimiter = '\t'; %no space
formatSpec = '%{yyyy/MM/dd HH:mm:ss}D%f%f'
카테고리
도움말 센터 및 File Exchange에서 Dates and Time에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!