Hi,,is there anyone who could tell me,how to generate a 10 bit binary data with only ONE in the first position and rest is zero?

1 次查看(过去 30 天)
The data stream should be like this, A=[1 0 0 0 0 0 0 0 0 0]

采纳的回答

Star Strider
Star Strider 2016-5-20
If you want to be compatible with the MATLAB binary data representation convention, this works:
n = dec2bin(0, 10);
n(1) = '1';

更多回答(1 个)

Azzi Abdelmalek
Azzi Abdelmalek 2016-5-20
编辑:Azzi Abdelmalek 2016-5-20
A=[1 zeros(1,9)]
or
dec2bin(2^9,10)-'0'

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by