Load mat files matching specific string inclusive of different strings
4 次查看(过去 30 天)
显示 更早的评论
I have a folder which consist of n number of .mat files, the names of the files are like mentioned below (latest residuals in log10 of year 2002 to 2020, altitude, latitude , longitude)
latest_res_log102002_alt
latest_res_log102002_lat
latest_res_log102002_long
latest_res_log102003_alt
latest_res_log102003_lat
latest_res_log102003_long
.
.
.
.
latest_res_log102020_long
I would like to load the files three at a time when required by searching the year only. viz.
latest_res_log102015_alt, latest_res_log102015_lat and latest_res_log102015_long.
How to do that. PLease help me.
采纳的回答
KSSV
2021-9-26
matFiles = dir('*.mat') ;
matFiles_name = {matFiles.name} ;
idx = find(~cellfun(@isempty,strfind(matFiles_name,'2015'))) ;
matFiles_name(idx)
4 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Structures 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!