필터 지우기
필터 지우기

Matlab: select data from many DAT files and put them into one file

조회 수: 1 (최근 30일)
ke
ke 2022년 12월 9일
댓글: Mathieu NOE 2022년 12월 9일
I need to put a specific data of each file together in order, but I don't know what to use to describe its path. For example, all files have only numbers. I need to put the data in the first row and the sixth column of each file together. Maybe I need to use the for loop, but it is too difficult for me.please write a short piece of code.

채택된 답변

Mathieu NOE
Mathieu NOE 2022년 12월 9일
hello
try this , it will loop in your folder and load all dat files
I assumed here readmatrix is the right function to read your file format
%% define path
fileDir = pwd; % or your specific path / folder
S = dir(fullfile(fileDir,'*.dat')); % get list of data files in directory
S = natsortfiles(S); % sort file names into natural order (what matlab dir does not well) , see FEX :
%(https://fr.mathworks.com/matlabcentral/fileexchange/47434-natural-order-filename-sort)
%% Loop inside folder
for k = 1:length(S) % read data in specified sheet
fileName = S(k).name;
out = readmatrix(fullfile(fileDir, fileName)); % or use a structure (S(k).data ) to store the full data structure
end
  댓글 수: 2
ke
ke 2022년 12월 9일
thank you, if I want the data in the first row and sixth column of each dat file, where should I put (1,6)?
Mathieu NOE
Mathieu NOE 2022년 12월 9일
data in the first row = out(1,:)
data in the sixth column = out(:,6)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 File Operations에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by