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

88 次查看(过去 30 天)
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 个评论
수정
수정 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 CenterFile Exchange 中查找有关 Data Import and Analysis 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by