フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Reading custom-created file from C++ at Matlab

1 回表示 (過去 30 日間)
George Lazaridis
George Lazaridis 2014 年 8 月 4 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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.

回答 (1 件)

George Lazaridis
George Lazaridis 2014 年 8 月 4 日
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