how to read text file and to ignore the first 10 rows and to take only the 4rth and 5th columns?
Mostrar comentarios más antiguos
how to read text file and to ignore the first 10 rows and to take only the 4rth and 5th columns? from this file: http://iopscience.iop.org/0266-5611/17/6/301/media/dielTM_dec4f.exp
i tried to use textscan but i don't really understand how to and it looks a bit complicated
any other solution or how to do this?
Respuesta aceptada
Más respuestas (1)
Image Analyst
el 15 de Sept. de 2014
Maybe try importdata()
delimiterIn = ' ';
headerlinesIn = 10;
myStructure = importdata(filename,delimiterIn,headerlinesIn);
data = myStructure.data;
Worked for me.
2 comentarios
Image Analyst
el 15 de Sept. de 2014
You could do it all in just 2 lines instead of the 3 required for textscan(). Plus you don't need to figure out all that stuff about '%*f%*f%*f%f%f%*f%*f' since it figures it out for you.
per isakson
el 16 de Sept. de 2014
Editada: per isakson
el 16 de Sept. de 2014
Problem is I don't know about importdata ;-).
Categorías
Más información sobre Large Files and Big Data en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!