Hide bits in random numbers and extract it

1 次查看(过去 30 天)
How can I generate random binary digits and then hide some of defined binaries it random binaries, and then extract it?
  3 个评论
Walter Roberson
Walter Roberson 2015-11-10
First you tame a hippopotamus, for the practice in "doing difficult things" before you get to "generate random binary digits". Unless you have a Lava Lamp on hand?
Abdul Jalil Shaikh
Abdul Jalil Shaikh 2015-11-10
I have generated random binaries by command. randint(1,100, [0 1]) now i have message i.e. msg='11001100'; i want to hide and then extract it from random digits. what will be the procedure?

请先登录,再进行评论。

回答(1 个)

Walter Roberson
Walter Roberson 2015-11-11
randomdigits = randint(1,100, [0 1]);
msg='11001100';
outputdigits = randomdigits;
outputdigits(1:length(msg)) = msg - '0';
Now outputdigits has the message hidden in it.

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by