Applying function only to certain files in directory

7 visualizaciones (últimos 30 días)
MiauMiau
MiauMiau el 10 de Abr. de 2017
Comentada: MiauMiau el 11 de Abr. de 2017
Hi, I have the following code, which applies the function 'load_nii' to files from the current directory which I select manually with the variables k and l:
currentFolder = pwd;
listing = dir;
allDirNames = { listing.name };
dirLA =~ [ listing.isdir ];
dirLA(1:2) = 0;
dirNames = allDirNames(dirLA);
% set k, l to choose which files to convert
k = 3;
l = 182;
% convert Niftis to Mat-Files
for idx = k:l
foo(idx) = load_nii(allDirNames{idx});
betas{idx-(k-1)} = foo(idx).img;
end
What I want however is that the function load_nii is automatically applied to all files which start with certain strings (e.g. "results"), such that I don't have to set the variables k and l manually. How can I do that?
Thanks
  4 comentarios
Guillaume
Guillaume el 10 de Abr. de 2017
Oh yes, with the solution proposed, there's no need to filter the directories anyway.
My comment was more generic in case such code (directory listing) is used for something else where file filtering does not apply.
I don't know why mathworks decided to return these two useless entries other than for the sake of matching the antiquated behaviour of dos dir.
MiauMiau
MiauMiau el 11 de Abr. de 2017
yep I figured that...strange indeed that it is implemented like this, but my code works fine now, thanks for all the help

Iniciar sesión para comentar.

Respuesta aceptada

dbmn
dbmn el 10 de Abr. de 2017
The simplest solution is, when you know a priori what your files are called. In that case use wildcards with *
listing = dir('results*.m');
  2 comentarios
dpb
dpb el 10 de Abr. de 2017
And, write the function such that you pass that "magic string" to the function as a user-specified variable instead of hardcoding it into the function.
MiauMiau
MiauMiau el 10 de Abr. de 2017
Thanks, very helpful!:)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre File Operations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by