extracting data from a file and creating a file.

2 次查看(过去 30 天)
How should the matlab code be, which reads the times corresponding to the given station names (for example C0AU3SZ IP, c0ATYSZ IP ....)from the data files we have and save them into a single file. The sample file is as follows.

回答(1 个)

Amit Dhakite
Amit Dhakite 2023-6-8
Hi Yeliz,
According to my understanding, you want to read station names and their corresponding times from multiple files.
You can refer to the following example to get started, which reads data from one file "data_in.txt":
And saves the required information in the file "data_out.txt":
Here is the code snippet:
% Open the text file
fid = fopen('data_in.txt', 'r');
% Read the first line and split station names and times
header = fgetl(fid);
header = split(header, ' ');
stations = header{1};
times = header{2};
% Initialize arrays to hold station names and times
stationNames = {};
stationTimes = {};
% Loop through the rest of the lines and extract station name and time
while ~feof(fid)
line = fgetl(fid);
pieces = split(line, ' ');
stationNames{end+1} = pieces{1};
stationTimes{end+1} = pieces{2};
end
% Close the file
fclose(fid);
% Save the station names and times to a new file
fidNew = fopen('data_out.txt', 'w');
fprintf(fidNew, '%s %s\n', stations, times);
for i=1:length(stationNames)
fprintf(fidNew, '%s %.2f\n', convertCharsToStrings(stationNames{i}), convertCharsToStrings(stationTimes{i}));
end
% Close the new file
fclose(fidNew);
For further information related to the functions used above, kindly refer to the following links:
  1. fopen(): https://www.mathworks.com/help/matlab/ref/fopen.html
  2. fgetl(): https://www.mathworks.com/help/matlab/ref/fgetl.html
  3. split(): https://www.mathworks.com/help/matlab/ref/split.html
  4. feof(): https://www.mathworks.com/help/matlab/ref/feof.html
  5. fclose(): https://www.mathworks.com/help/matlab/ref/fclose.html
  6. fprintf(): https://www.mathworks.com/help/matlab/ref/fprintf.html
  7. convertCharsToStrings(): https://www.mathworks.com/help/matlab/ref/convertcharstostrings.html

类别

Help CenterFile Exchange 中查找有关 Data Import and Export 的更多信息

产品


版本

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by