Effacer les filtres
Effacer les filtres

How to have Matlab read files and then record the title of the file as a variable?

5 vues (au cours des 30 derniers jours)
Hi everyone,
I have a set of files in a folder, like:
58.94177000.dpmrpt
62.586.dpmrpt
67.5467700.dpmrpt
77.331770000.dpmrpt
I need to read each file in Matlab, and record the title of the file like 77.331770000 as a variable, because it is a time variable.
Thank you.

Réponse acceptée

Walter Roberson
Walter Roberson le 10 Avr 2022
S = {'58.94177000.dpmrpt', '62.586.dpmrpt'}
S = 1×2 cell array
{'58.94177000.dpmrpt'} {'62.586.dpmrpt'}
[~, timepart, ~] = fileparts(S)
timepart = 1×2 cell array
{'58.94177000'} {'62.586'}
  3 commentaires
Walter Roberson
Walter Roberson le 10 Avr 2022
projectdir = 'D:\data';
ext = ".dpmrp";
dinfo = dir(projectdir, "*" + ext);
filenames = fullfile({dinfo.folder}, {dinfo.name});
nfiles = length(filenames);
[~, timepart, ~] = fileparts(filenames);
for K = 1 : nfiles
thisfile = filenames{K};
thisdata = Function_To_Read_dpmrp_File_Goes_Here(thisfile);
results = Function_To_Process_Data_Goes_Here(thisdata);
end

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Graphics Object Identification dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by