How to read out a textfile from a specific line

36 vues (au cours des 30 derniers jours)
jan mischke
jan mischke le 23 Jan 2019
Commenté : Rik le 22 Sep 2022
Hello Community,
I have a probably rather easy problem (at least for you guys). I have a textfile (attached) that is structured in lines and collums. And I want two specific collumns out of that file (Plasma_voltage_actual and Plasma_current_actual). Problem is that the first part of that text file has a different structure (just lines). So first I need to delete all the unnecessary stuff before the collumns start (actually no idea how to do that). That would be everything up to the line with which says "DATA RECORDINGS". What I want in the end is a Matrix with the headlines (Time Pressure Pres_set ...) and then the values for each collumn. Can you help me with that? The goal in the end is to take those two collumns and calculate the mean of them. But I guess I can (hopefully) figure that out on my own.
Thank you very much :)

Réponse acceptée

Stephen23
Stephen23 le 23 Jan 2019
Modifié(e) : Stephen23 le 23 Jan 2019
opt = {'Delimiter','\t', 'CollectOutput',true};
[fid,msg] = fopen('pG8.txt','rt');
assert(fid>=3,msg)
% Ignore lines until "DATA RECORDING":
str = '';
while ~strcmpi(str,'DATA RECORDING:') && ~feof(fid)
str = fgetl(fid);
end
% Read table header:
str = fgetl(fid);
hdr = regexp(str,'\t','split');
% Create format string:
fmt = repmat({'%*s'},1,numel(hdr));
idx = ismember(hdr,{'Plasma_voltage_actual(V)','Plasma_current_actual(mA)'})
fmt(idx) = {'%f'};
% Read table:
tmp = textscan(fid,[fmt{:}],opt{:});
fclose(fid);
out = tmp{1}
Which gives:
>> size(out) % nice big matrix of data:
ans =
3208 2
>> out(1:10,:) % not so interesting:
ans =
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
Lets try plotting it
X = 1:size(out,1);
plotyy(X,out(:,1),X,out(:,2))
legend(hdr(idx),'interpreter','none')
Giving:
  7 commentaires
Rik
Rik le 22 Sep 2022
Then you didn't explain it clearly enough. The way I read your comment it is not a separate question. The way I read your comment, this will be a trivial step once you implement the answer you already received in your own question. You simply ignore the first element of the cell vector.
Rik
Rik le 22 Sep 2022
I'm just saying the solution provided in that thread will also work for the problem you describe here. You're free to ignore the advice if you wish.
You want to read text, the other answer shows you how to read text. I don't understand why you are creating a new problem when you have a solution that can trivially be adapted.

Connectez-vous pour commenter.

Plus de réponses (1)

Jeremy Hughes
Jeremy Hughes le 23 Jan 2019
You might try READTABLE with import options:
>> opts = detectImportOptions(filename)
% Check that the number of header lines looks right
>> opts.SelectedVariableNames = {... the names you want to read ...}
>> T = readtable(filename,opts)

Catégories

En savoir plus sur Large Files and Big Data dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by