How to convert waveform in the binary raw format ?
9 views (last 30 days)
Show older comments
Jay Patel
on 17 Oct 2020
Answered: Prudhvi Peddagoni
on 21 Oct 2020
Hi all,
I want to convert my waveform into binary raw format. I am not sure how can i convert my waveforms into raw binary format ?
Please point me in the right direction.
2 Comments
Accepted Answer
Prudhvi Peddagoni
on 21 Oct 2020
Hi,
you can export the waveform data raw binary format like this:
fid = fopen('YourOutputFile.raw', 'w');
fwrite(fid, x, class(x));
fclose(fid);
Hope this helps.
0 Comments
More Answers (0)
See Also
Categories
Find more on Data Type Conversion in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!