Borrar filtros
Borrar filtros

How can Specific line and column text file can be read in Matlab?

1 visualización (últimos 30 días)
Khan Muhammad Adeel Khan
Khan Muhammad Adeel Khan el 9 de Jul. de 2020
Respondida: Takumi el 10 de Jul. de 2020
Hello!
I want matlab to read the line 4 and column 10 of the attached text file. Kindly guide me how to read the specific line and column?
  1 comentario
Khan Muhammad Adeel Khan
Khan Muhammad Adeel Khan el 9 de Jul. de 2020
Editada: Khan Muhammad Adeel Khan el 9 de Jul. de 2020
Thanks for the swift response. I want to save the 1st Quartile value 0.9681 in matlab format.

Iniciar sesión para comentar.

Respuestas (1)

Takumi
Takumi el 10 de Jul. de 2020
fname = 'sub1.txt';
fid = fopen(fname);
% skip 2 lines
for i=1:2
fgetl(fid);
end
str = fgetl(fid); % get specific line
fclose(fid);
num = extractBetween(str,":"," "); % extract numbers
str2num(cell2mat(num)) % convert

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by