How to convert waveform in the binary raw format ?
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jay Patel
el 17 de Oct. de 2020
Respondida: Prudhvi Peddagoni
el 21 de Oct. de 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 comentarios
Respuesta aceptada
Prudhvi Peddagoni
el 21 de Oct. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Type Conversion en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!