Hide bits in random numbers and extract it

1 Ansicht (letzte 30 Tage)
Abdul Jalil Shaikh
Abdul Jalil Shaikh am 9 Nov. 2015
Beantwortet: Walter Roberson am 11 Nov. 2015
How can I generate random binary digits and then hide some of defined binaries it random binaries, and then extract it?
  3 Kommentare
Walter Roberson
Walter Roberson am 10 Nov. 2015
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 am 10 Nov. 2015
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?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

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

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by