Borrar filtros
Borrar filtros

Open mat files

1 visualización (últimos 30 días)
bahare
bahare el 1 de Feb. de 2012
Hi I have 6 different mat files in the C directory of my PC, how can I open them through a for loop and use them as an input to some other function?
Thanks.

Respuestas (1)

Jan
Jan el 1 de Feb. de 2012
It depends on the names of the files and the data they contain. Example:
for i = 1:6
name = sprintf('C:\file%d.mat', i);
data = load(name);
yourfunction(data.values);
end
But this is only a bold guess. Please explain any details, if you need a more exact explanation.

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