fopen function word altering loop
1 次查看(过去 30 天)
显示 更早的评论
I am very new to matlab and I was love some help.
I have a set of data which is in the form 'Data_JAN.dat' and it goes from Jan-Dec and I want to create a loop which I can text scan them all and create a graph from each set of data. However I am haveing issues with the fopen in the loop and I was wondering if it is possible to create a loop which alters the name of the file being open.
This is the code i have for opening and reading one file:
fileID = fopen('Data_JAN.dat');
C = textscan(fileID,'%{dd MMM yyyy}D %{HH:mm:ss}D %4.2f');
fclose(fileID);
celldisp(C)
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Text Files 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!