How to open a bdf file and read and see what's inside it?

93 ビュー (過去 30 日間)
Simon
Simon 2022 年 12 月 23 日
コメント済み: 수정 2023 年 2 月 5 日
Hello!
I want to open bdf file called mount_z.bdf, I dont know all the data inside it so I want to be able to open it, read it choose which set of data I want and be able extract data from it to use it later for plotting.
How can I code it?
I tried with fopen but it didn't lead me anywhere.

採用された回答

Cameron
Cameron 2022 年 12 月 23 日
I think this would work for you
[file,path] = uigetfile('.bdf');
cd(path)
fileData = readcell(file);
  4 件のコメント
Simon
Simon 2022 年 12 月 23 日
I have attached the file
수정
수정 2023 年 2 月 5 日
Hello!
I want to open bdf file.
I also had a problem opening the BDF file.
I couldn't open it and I had an error message on the readcell function.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeEnvironment and Settings についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by