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!