How to make a binary sequence bit with given key?
2 次查看(过去 30 天)
显示 更早的评论
Hi I have a key (ex: key=1234;) how i create a binary sequence bit whose length is 1000 with this key?
0 个评论
采纳的回答
Walter Roberson
2013-8-22
Convert the key to binary. repmat() that as many times as will fit in a vector of length 1000. Fill the remainder of the 1000 with binary 0's.
3 个评论
Walter Roberson
2013-8-23
Do you mean Ӓ, capital A with two dots, Unicode position (decimal) 1234 ? Or do you mean just capital A ?
If you mean Ӓ, capital A with two dots then
vec = [1 0 0 1 1 0 1 0 0 1 0]; %you have the vector somehow
char(bin2dec(char('0' + vec)))
and the reverse would be
ch = char(1234); %you already have the character somehow
dec2bin(ch) - '0'
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!