How to load data from DAT file

282 ビュー (過去 30 日間)
ALDO
ALDO 2020 年 6 月 10 日
編集済み: Walter Roberson 2020 年 6 月 10 日
Hi guys
can someone please help me with extracting data from .dat file. I wanted to attach an example file but it was to big.
I have tried the following codes but was unsuccesful. I would appriciate any input on this. Thanks!
fileID = fopen('example.dat');
OneByte = fread(fileID,'*ubit8');
A=double(OneByte);
%%
[filename directory_name] = uigetfile('*.dat', 'Select a file');
fullname = fullfile(directory_name, filename);
data = load(fullname)
%%
[FileName,PathName] = uigetfile('*.dat');
localdir = dir;
cd(PathName);
load(FileName);
cd('C:\Users\username\Documents\MATLAB\cd');
  4 件のコメント
Walter Roberson
Walter Roberson 2020 年 6 月 10 日
編集済み: Walter Roberson 2020 年 6 月 10 日
ALDO
ALDO 2020 年 6 月 10 日
This was very helpful. Thank you so much!

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

回答 (0 件)

カテゴリ

Help Center および File ExchangeFile Operations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by