hello, i have such a type of data per 30 days in one file.by using fgets,fsca​nf,str2num​,strcmp i need to plot temp vs height

1 Ansicht (letzte 30 Tage)
  5 Kommentare

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Voss
Voss am 11 Dez. 2023
The following uses fscanf, fgets, str2num, and strcmp:
filename = 'file.txt';
fid = fopen(filename,'r');
counter = 0;
while counter < 2
str = fgets(fid);
if ~ischar(str)
break
end
if numel(str) > 1 && strcmp(str([1 2]),'--')
counter = counter + 1;
end
end
data = str2num(fscanf(fid,'%c'));
fclose(fid);
plot(data(:,2),data(:,3))

Kategorien

Mehr zu Data Preprocessing finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by