Hi, is there any way, I can save a random binary data after generating it?any suggestion would be appreciated! thank you

1 view (last 30 days)
Example, after generating a long binary data a=[1 0 0 1 0 0 1 1 1 ]; how do I save it?

Accepted Answer

John
John on 20 Apr 2016
Did you try the save command?
a = [1 0 0 1 0 0 1 1 1 ];
save('my_data', 'a');
  1 Comment
nafila aytija
nafila aytija on 22 Jun 2016
yes,,but it is giving the error message.IF i save the data,if needed later how do I call the function? any kind of help would be appreciated.Thanks in advance

Sign in to comment.

More Answers (0)

Categories

Find more on Get Started with MATLAB 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!