i am trying to read a .dat file but i dont getting any data?
1 view (last 30 days)
Show older comments
Vishnu Dhakad
on 7 May 2018
Commented: Vishnu Dhakad
on 14 May 2018
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 Comments
Accepted Answer
Walter Roberson
on 7 May 2018
Use textscan() instead of fscanf() .
Also, you need to open the correct file name. And you need to fclose(fid)
More Answers (0)
See Also
Categories
Find more on Data Import and Export in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!