Simulink bit operations

Hi all, I wanted to ask if from a number of bits that are represented with 1 and 0 is possible to invert the ones to -1 each lets say two bits? Thanks in advance.

2 Kommentare

Fangjun Jiang
Fangjun Jiang am 17 Dez. 2011
Not clear to me what do you mean by "from a number of bits" and "to invert the ones to -1 each lets say two bits". Are you saying that if you have an inputs of 10 bits, six 1s and four 0s, alternate randomly, you want to invert the first two 1s into -1?
Raldi
Raldi am 13 Jan. 2012
basicaly i was trying to create an ami nrz line code, i think flip flops is the only way to do that. I havent finish it yet though.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Paulo Silva
Paulo Silva am 16 Dez. 2011

0 Stimmen

[1 0]------>Gain(-1)----->[-1 0]
Use the Gain block and define that gain as -1

7 Kommentare

Raldi
Raldi am 16 Dez. 2011
but wont this transform all ones to -1?
i want for excmple [1 1 0 1]---->[1 -1 0 1]
Paulo Silva
Paulo Silva am 16 Dez. 2011
Yes you are right, it's something easy to do in MATLAB but not in Simulink, maybe someone can help you with a better solution
Paulo Silva
Paulo Silva am 16 Dez. 2011
For that example you can try the Product block and use element wise operations
[1 1 0 1]----->Product>----[1 -1 0 1]
[1 -1 1 1]---->_______
Raldi
Raldi am 16 Dez. 2011
Still it wont work as i am using a bernoulli generator so i dont know the number of the bits. I think the best way to do it is using logical excpresions and timers, but i havent figured out how yet.
Walter Roberson
Walter Roberson am 16 Dez. 2011
How many bits per time sample is your generator producing? If it is one bit per time sample then perhaps use a step function that flips between -1 and 1 every two steps.
Walter Roberson
Walter Roberson am 16 Dez. 2011
Ah, instead of a step function, you could perhaps use a Repeating Sequence block, as mentioned at http://www.mathworks.com/matlabcentral/answers/15874-hi-all-i-am-having-a-difficulty-in-switching-a-signal-i-need-a-switch-in-simulink-that-must-be-on
Raldi
Raldi am 13 Jan. 2012
I was thinking more of using a flip flop as it has memmory, The general idea was to create a simple ami-nrz line code.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Simulink finden Sie in Hilfe-Center und File Exchange

Produkte

Gefragt:

am 16 Dez. 2011

Community Treasure Hunt

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

Start Hunting!

Translated by