how to read .dat file using txtscan ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Vishnu Dhakad
am 23 Okt. 2018
Kommentiert: jonas
am 29 Okt. 2018
Please find the attachment.
3 Kommentare
jonas
am 23 Okt. 2018
Bearbeitet: jonas
am 23 Okt. 2018
Apart from the low effort put into my comment, I did not feel that it addressed the actual question, which seems to be specifically about textscan. I made the post shortly after the question was posted, so I was hoping for a quick reply after which I could expand my comment into an actual answer. Perhaps I should have phrased my comment in a different way.
Akzeptierte Antwort
jonas
am 23 Okt. 2018
Bearbeitet: jonas
am 23 Okt. 2018
You can use readtable since the data is tabular.
T = readtable('AE33_AE33-S02-00184_20170102.dat','headerlines',8)
...gave me a 71 column table. Some of your headers are not valid variable names so I did not import them at all.
If you insist on using textscan, then
fid = fopen('AE33_AE33-S02-00184_20170102.dat')
out = textscan(fid,['%{yyyy/MM/dd}D %{hh:mm:ss}T',repmat('%f',1,69)],'headerlines',9)
fclose(fid)
1 Kommentar
jonas
am 29 Okt. 2018
in reply to Vishu's "Answer"
Odd. I suspect you are using an ancient release that cannot parse the duration format? You can always import the dates as strings. Try this:
fid = fopen('AE33_AE33-S02-00184_20170102.dat')
out = textscan(fid,['%s%s',repmat('%f',1,69)],'headerlines',9)
fclose(fid)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Text Files finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!