Use a loop to load .dat files (with matrices) and manipulate them
Afficher commentaires plus anciens
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?
Réponse acceptée
Plus de réponses (1)
Honglei Chen
le 16 Nov 2011
If you use dir, it returns a struct. In your case, you should do
load(D(i).name)
instead.
HTH
Catégories
En savoir plus sur Programming dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!