How can I get arguments in my MATLAB batch script to use a series of files with different character strings?

3 views (last 30 days)
I'm fairly new to MATLAB, so apologies if this is unclear or poorly-worded.
I have some files I want to use in a batch script, but the files currently have different names across different folders - is it possible to use these files as they are and get my script to read them? The file will be run using a bash script, and the script uses/operates in SPM12.
The files have this same general format across all the folders, but different character strings after 202:
Physio_202*_PULS.log
They also have same general paths, all located in:
.../[subject]/physio
The current arguments are formatted like this:
{['/location/' subject '/physio/' subject '_PULS.log']};
The 'subject' argument pulls information from a text file nominated when running the script in bash.
Would replacing the second 'subject' with something like 'Physio_202*_PULS.log' work?
  4 Comments

Sign in to comment.

Accepted Answer

Stephen23
Stephen23 on 18 Mar 2024
Edited: Stephen23 on 18 Mar 2024
S = dir('/location/*/physio/*_PULS.log');
for k = 1:numel(S)
F = fullfile(S(k).folder,S(k).name);
T = readtable(F); % or READCELL, READMATRIX, etc
% do whatever with your imported data
end

More Answers (0)

Categories

Find more on Data Import and Analysis in Help Center and File Exchange

Products


Release

R2023b

Community Treasure Hunt

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

Start Hunting!