Borrar filtros
Borrar filtros

Extract or import two Specific values form Text file

1 visualización (últimos 30 días)
Learner
Learner el 24 de Jul. de 2018
Comentada: madhan ravi el 24 de Jul. de 2018
I am working on a problem in MATLAB, in which I need to import two specific values (highlighted) from a text file as shown in the figure 1.
And corresponding txt file is attached below.

Respuesta aceptada

madhan ravi
madhan ravi el 24 de Jul. de 2018
Try this:
fid = fopen('M7_soil_FN_1.txt','rt');
C = textscan(fid,'%f%f','HeaderLines',6);
fclose(fid);
C{1}
C{2}
  2 comentarios
Learner
Learner el 24 de Jul. de 2018
Yes, its working thank you very much...
madhan ravi
madhan ravi el 24 de Jul. de 2018
You are welcome

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Data Import and Export en Help Center y File Exchange.

Productos


Versión

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by