Import data from text file

1 Ansicht (letzte 30 Tage)
Rica
Rica am 11 Sep. 2017
Bearbeitet: KL am 11 Sep. 2017
Hi, i want to import data from a text file. the text is consisted of 201 column. The first column is a time column:
%
Hour:minute.second.millisecond
00:00.34.294
00:00.35.090
00:00.35.839
00:00.36.619
the oder 200 column are floting number. is textscan the approprite function to do this? Schould i specifiy the Format of all the 201 clumns, or is there any tricky function?
Thank you!

Akzeptierte Antwort

Guillaume
Guillaume am 11 Sep. 2017
use readtable which should be able to figure out the format of your file on its own. It will probably fail for your time column and import it as text instead. This can be fixed either beforehand by overriding the import options or afterward with:
yourtable.yourfirstcolumn = datetime(yourtable.yourfirstcolumn, 'InputFormat', 'HH:mm.ss.S', 'Format', 'HH:mm.ss.SSS');
  1 Kommentar
KL
KL am 11 Sep. 2017
Bearbeitet: KL am 11 Sep. 2017
I agree! readtable(filename) should be enough if that file is properly formatted.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by