i am trying to read a .dat file but i dont getting any data?

2 ビュー (過去 30 日間)
Vishnu Dhakad
Vishnu Dhakad 2018 年 5 月 7 日
コメント済み: Vishnu Dhakad 2018 年 5 月 14 日
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

採用された回答

Walter Roberson
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)
  1 件のコメント
Vishnu Dhakad
Vishnu Dhakad 2018 年 5 月 14 日
Thanks for the valuable answer.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Import and Export についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by