필터 지우기
필터 지우기

Error observed in using bitsll and bitsra

조회 수: 4 (최근 30일)
Life is Wonderful
Life is Wonderful 2022년 9월 22일
편집: Life is Wonderful 2022년 9월 28일
When utilizing bitsll and bitsra, an error was noticed.
I have the following code and intend to utilize Embedded.fi [fixed point ] as double implementation show in case -1.
Can someone please show me how to code correctly and help me understand what I'm missing in cases 2 and 3?
It would be nice if I could do cases 2 and 3 in a single function/ single solution.
Thank you very much.
% case -1 : double
k = linspace(-12,12,10);
for i = 1 : length(k)
a = 2 ^ k(i)
end
a = 2.4414e-04
a = 0.0016
a = 0.0098
a = 0.0625
a = 0.3969
a = 2.5198
a = 16
a = 101.5937
a = 645.0796
a = 4096
% case -2: Embdedded fi ,fixed point - right shift
k = fi(linspace(-12,12,10),1,32,27);
a = int8(1);
for i = 1 : length(k)
% fxpOut = bitsra(a,k(i))
disp(bin(bitsra(a,k(i))))
end
Error using bitsra
K must be numeric, scalar, real, integer-valued, and greater than or equal to zero in BITSRA(A,K).

Error in embedded.fi/bitsra (line 38)
y = bitsra(x, double(kin));
% case - 3: Embdedded fi ,fixed point - left shift
k = fi(linspace(-12,12,10),1,32,27);
a = int8(1);
for i = 1 : length(k)
fxpOut = bitsll(a,k(i))
disp(bin(bitsll(a,k(i))))
end
  댓글 수: 4
Richard McCormack
Richard McCormack 2022년 9월 26일
I am happy that you made progress!
I made some adjustments to your code to make it work for code generation.
But maybe there is a reason that you can't use abs. If that is the case, please let me know why you can't use abs.
function scratch
coder.extrinsic('bin');
K = [-12,12];
coder.unroll;
for i = 1:length(K)
if sign(K(i)) < 0 % Bitsliceget to know bitposition and do a bitand for sign
% Negative
b = fi(bitsra(1,abs(K(i))));
disp(bin(b))
else
% Positive
b_i = fi(bitsra(1,abs(K(i))));
disp(bin(b_i))
end
end
end
Life is Wonderful
Life is Wonderful 2022년 9월 26일
편집: Life is Wonderful 2022년 9월 28일
Thanks a lot @Richard McCormack.
I am fine in using abs. I will try out your suggested code and make some test.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by