How to count files with specific name?
28 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
IGOR RIBEIRO
el 31 de Mzo. de 2016
Respondida: Walter Roberson
el 31 de Mzo. de 2016
Great friends, I need help. I made a .mat file strut format that lists all my HDF files. These files are a set of data per year. I want to count how many files have to each year. How to make? For example: file = dir ('AIRS *'); length (file ('AIRS.2003 *)) length (file ('AIRS.2004 *)) length (file ('AIRS.2005 *))
Thanks for your help.
0 comentarios
Respuesta aceptada
Walter Roberson
el 31 de Mzo. de 2016
file = dir ('AIRS *');
filenames = {file.name};
num2004 = sum( ~cellfun(@isempty, strfind(filenames, '2004')) )
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre File Operations en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!