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

조회 수: 102 (최근 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 CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by