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

조회 수: 1 (최근 30일)
Joseph Kuhn
Joseph Kuhn 2018년 9월 18일
답변: Prakhar Jain 2018년 9월 25일
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?

답변 (1개)

Prakhar Jain
Prakhar Jain 2018년 9월 25일
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

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by