How to convert waveform in the binary raw format ?

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 comentarios

Can you explain more about the waveform data?
Jay Patel
Jay Patel el 20 de Oct. de 2020
I have CDMA signal (Attached) that I want to save as binary or raw file so eventually I can convert that to wav file and use for transmission.

Iniciar sesión para comentar.

 Respuesta aceptada

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.

Más respuestas (0)

Categorías

Más información sobre Waveform Design and Signal Synthesis en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 17 de Oct. de 2020

Respondida:

el 21 de Oct. de 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by