Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

Reading custom-created file from C++ at Matlab

1 vue (au cours des 30 derniers jours)
George Lazaridis
George Lazaridis le 4 Août 2014
Clôturé : MATLAB Answer Bot le 20 Août 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.

Réponses (1)

George Lazaridis
George Lazaridis le 4 Août 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!

Translated by