i am trying to read a .dat file but i dont getting any data?
1 次查看(过去 30 天)
显示 更早的评论
my code is
fid = fopen('20180426_TRH.dat');
A = fscanf(fid, '%c, %f/%f/%f, %f:%f:%f, %f, %f, %f, %f, %f/%f/%f, %f:%f:%f, %f, %f, %f, %f, %f');
fclose(fmlds);
I want to read this file in 1*rows matrics. file format is attached. please help me
0 个评论
采纳的回答
Walter Roberson
2018-5-7
Use textscan() instead of fscanf() .
Also, you need to open the correct file name. And you need to fclose(fid)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Import and Export 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!