Import data from text file

2 visualizaciones (últimos 30 días)
Rica
Rica el 11 de Sept. de 2017
Editada: KL el 11 de Sept. de 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!

Respuesta aceptada

Guillaume
Guillaume el 11 de Sept. de 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 comentario
KL
KL el 11 de Sept. de 2017
Editada: KL el 11 de Sept. de 2017
I agree! readtable(filename) should be enough if that file is properly formatted.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by