Use a loop to load .dat files (with matrices) and manipulate them
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi, I have some .dat files which include measurements in a matrix form. I want to load them in matlab and in each of them to remove some of the columns.
I am trying something like this but it doesn't work:
nof=10; % number of files
for i=1:nof
D=dir('*.dat)
load (D(i)....) %????
% remove column
end
Any help?
댓글 수: 0
채택된 답변
Walter Roberson
2011년 11월 16일
D = dir('*.dat');
nof = min(10, length(D));
for K = 1:nof
thisname = D(K).name;
Indata = load(thisname);
Indata(:,17) = []; %delete column 17
%then what?? Guess I'll save the data
newname = ['new_' thisname];
save(newname,'InData')
end
추가 답변 (1개)
Honglei Chen
2011년 11월 16일
If you use dir, it returns a struct. In your case, you should do
load(D(i).name)
instead.
HTH
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 File Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!