How can I move text into a string, each index containing one character?

1 view (last 30 days)
I am working on LSB Steganography. I converted my text message into bits, but I'm not sure how I can move that into an array with each index containing only one of the bits each (such as [1, 0, 0, 1, 0, etc.]) so that I can loop through it and check each index with another value. If this isn't feasible, is there a way that I can put all of the bits into a string and then loop through the string one character at a time?

Answers (1)

Prakhar Jain
Prakhar Jain on 25 Sep 2018
converted_text_msg_in_bits = '1001'; % Change this with your bit sequence
array_output_indexwise = converted_text_msg_in_bits - '0'; % This is your required array of bits

Categories

Find more on Characters and Strings in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!