Hi, is there any way, I can save a random binary data after generating it?any suggestion would be appreciated! thank you
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
nafila aytija
el 20 de Abr. de 2016
Comentada: nafila aytija
el 22 de Jun. de 2016
Example, after generating a long binary data a=[1 0 0 1 0 0 1 1 1 ]; how do I save it?
0 comentarios
Respuesta aceptada
John
el 20 de Abr. de 2016
Did you try the save command?
a = [1 0 0 1 0 0 1 1 1 ];
save('my_data', 'a');
Más respuestas (0)
Ver también
Categorías
Más información sobre Low-Level File I/O 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!