필터 지우기
필터 지우기

extract one of the bits in fi(), flip it, and reassemble it to produce new bin

조회 수: 1 (최근 30일)
Hi, I am trying to do the following cleanly in fixed point designer:
Take a binary: '0010'
Flip the 2nd bit to produce: '0000'
Is there a clean way to do this with some opeartion within fi(), perhaps just 1 or 2 lines of code?
I am a new user at fixed-point designer.
Thank you very much.

채택된 답변

Hrishikesh Borate
Hrishikesh Borate 2021년 4월 19일
Hi,
It’s my understanding that you are trying to flip the bit at 2nd position.
Following is the code for the same :-
input = '0010';
bitflip = @(val, n) bitxor(val, 2.^(n-1));
output = dec2bin(bitflip(bin2dec(input),2));
For more information, refer to the following answer and dec2bin.

추가 답변 (2개)

Walter Roberson
Walter Roberson 2021년 4월 19일
input = '1010';
input(3) = 'a' - input(3)
input = '1000'
... It's magic ;-)
flipped = (1 - (x - '0')) + '0'
flipped = 1 + '0' + '0' - x
flipped = 1 + 48 + 48 - x
flipped = 97 - x
flipped = 'a' - x

Andy Bartlett
Andy Bartlett 2021년 4월 19일
Please see my answer in your similar question.
That answer provides a one-liner that works in most cases.
It also provides a more general solution using a helper function.

카테고리

Help CenterFile Exchange에서 Fixed Point에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by