save column values of different multiple .txt files without overwriting in a for loop.
조회 수: 1 (최근 30일)
이전 댓글 표시
yr = [1951:2018]';
for j = 1:size(A)
fil = importdata([folder, A(j).name]);
file = dlmread(fullfile(folder , A(j).name));
for i = 1:size(yr,1)
a = find(file(:,1)==yr(i));
M(i,1) = sum(file(a,4));
end
end
I imported all files using 'dir' ansd stored in A. The problem is that Only Last file is getting operated on.
댓글 수: 2
채택된 답변
KALYAN ACHARJYA
2019년 9월 18일
I want to bring the 4th column of all the files in the sructure to one data_array,
- Read the txt file one by one (As you mentioned you have done it sucessfully)
- iter i=1
- Extract the 4th column from i file
- Save the column data in cell array
- Repeat, iter 2
Step 3:
col_data{i}=writetable(column_data,['file_test',num2str(i),'.txt'])
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Low-Level File I/O에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!