How to convert waveform in the binary raw format ?
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Jay Patel
il 17 Ott 2020
Risposto: Prudhvi Peddagoni
il 21 Ott 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 Commenti
Risposta accettata
Prudhvi Peddagoni
il 21 Ott 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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Waveform Design and Signal Synthesis in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
