Open mat files
显示 更早的评论
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.
回答(1 个)
Jan
2012-2-1
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.
类别
在 帮助中心 和 File Exchange 中查找有关 Workspace Variables and MAT Files 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!