import text file in loop

1 visualización (últimos 30 días)
Nicolas
Nicolas el 6 de Abr. de 2018
Respondida: Nicolas el 6 de Abr. de 2018
Hi, I'm creating text files from another program that I want to import into Matlab. I have been using the import wizard matlab option (see attachment), however the size of each file is different. In the function created by Matlab, I would like to know if the 'formatSpec' can be defined automatically or if I can create it for every new file?
  2 comentarios
Rik
Rik el 6 de Abr. de 2018
If you can deduce for each file what the format spec should be, you can just use it as an input to this function
Nicolas
Nicolas el 6 de Abr. de 2018
Editada: Nicolas el 6 de Abr. de 2018
what I know is the number of time '%s' is repeated in the 'formatSpec'. not sure if I can build 'formatSpec' myself? be able to write %s."number of values"%[^\n\r]

Iniciar sesión para comentar.

Respuesta aceptada

Nicolas
Nicolas el 6 de Abr. de 2018
Answer to automatically build 'formatSpec' using the import function created by Matlab.
A = repmat('%s',1,201);
B = '%[^\n\r]';
formatSpec = strcat(A,B);

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