How to read one number from multiple text files

5 views (last 30 days)
Hello,
I have been struggeling with finding a way to read 1000 text files into matlab. The text files have letters in them as well, however from every text file I only want one number. I have tried dlmread, that doesnt work. I Have tried fopen, I couldnt figure out how can I specifiy the numer location (which row and couloumn).
I would very much appreciate it if someone knows a way!!
  5 Comments
dpb
dpb on 18 Mar 2020
That's a trivial file format to read presuming that is the beginning of the file...
data=readmatrix('Yourfilename.txt','NumHeaderLines',1,'Range','E6');
the overhead of the specific element read may/may not be significant; the previous suggestion would have just been
data=readmatrix('Yourfilename.txt','NumHeaderLines',1); % read full data array
data=data(5,6); % keep the wanted data

Sign in to comment.

Accepted Answer

Sindhu Karri
Sindhu Karri on 23 Mar 2020
This is an alternate solution
fileID = fopen('textfile.txt','r');%textfile to be included in the current folder path
formatSpec = '%d %d %d %d';
sizeA = [4 6];%dimensions of the data to be read
A = fscanf(fileID,formatSpec,sizeA);
A=A'
b=A(6,3)% to get the specified number
fclose(fileID);
Refer to below link
  2 Comments
Walter Roberson
Walter Roberson on 23 Mar 2020
You need an initial fgets(fileID) to skip the header line.
What is the reasoning for bothering to take the transpose? Why not omit it and use A(3,6) ?
Maha Almarzooqi
Maha Almarzooqi on 30 Mar 2020
Thank you for your answers dpb and sindhu. I also agree with Walter regarding the concern on why the transpose?

Sign in to comment.

More Answers (0)

Categories

Find more on Data Import and Export in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!