Info

This question is closed. Reopen it to edit or answer.

Reading custom-created file from C++ at Matlab

1 view (last 30 days)
George Lazaridis
George Lazaridis on 4 Aug 2014
Closed: MATLAB Answer Bot on 20 Aug 2021
I know the structure of the file that is created in C++ and i want to know if there is a way to read this file in Matlab. Can someone please explain to me how this is possible? I've tried fopen etc. but i just get an integer as a result after the reading process. Obviously i am doing something wrong.

Answers (1)

George Lazaridis
George Lazaridis on 4 Aug 2014
This is the structure:
if true
% code
end
bw = New BinaryWriter(myStream)
bw.Write("My company ECG") // string
bw.Write("Version 1.0.0.0") //string
bw.Write("1001") 'String –Patient ID //string
bw.Write("001") 'String –Study ID //string
bw.Write("1") 'Integer –gender: 0 male,1 female //string
bw.Write("ECG") //string
bw.Write("500") //string
bw.Write("test") //string
bw.Write(datas_length) //long or int64
For i As Long = 0 To datas_length - 1
bw.Write(ChannelData(i)) //float
Next
bw.Write("Sample finished") //string
bw.Close()

Community Treasure Hunt

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

Start Hunting!