How to convert waveform in the binary raw format ?
조회 수: 24(최근 30일)
표시 이전 댓글
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.
채택된 답변
Prudhvi Peddagoni
2020년 10월 21일
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
추가 답변(0개)
참고 항목
범주
Find more on Periodic Waveform Generation 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!