필터 지우기
필터 지우기

ROTL and ROTR for 64 bits

조회 수: 1 (최근 30일)
suzi freunden
suzi freunden 2012년 5월 12일
Hi, is there a Circular left bit shift operator for 64 bits? for exemple I have this number x=9223372036855037954 circular left shift and right shift by 4 bits should give the following results: xr=2882303761517133824 xl=4194344 thanks a lot

답변 (2개)

Jan
Jan 2012년 5월 12일
a = uint64(9223372036855037954); % Not correct in 2009a!
n = rem(n, 64);
bitor(bitshift(a, -n), bitshift(a, (64-n)))
bitor(bitshift(a, n), bitshift(a, (n-64)))
  댓글 수: 3
Jan
Jan 2012년 5월 13일
See: http://www.mathworks.com/matlabcentral/answers/9886-uint64-equivalence
In 2009a, "a=uint64(9223372036855037954)" leads to: a = 9223372036855037951. Unfortunately the number is converted to a DOUBLE at first loosing some bits of precision, and cast to UINT64 afterwards. This behavior has been made consistent in 2010b. The UINT64 support in 2009a is very limited, e.g. operators are not implemented.
Please post your Matlab version.
suzi freunden
suzi freunden 2012년 5월 13일
yes I notice this cast, my matlab version is 2009b....

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


Walter Roberson
Walter Roberson 2012년 5월 12일
No there is not. Extract the N bits at the edge using bitget(), use bitshift() to do the shift, and then bitset() the extra bits into place at the other edge.
  댓글 수: 2
suzi freunden
suzi freunden 2012년 5월 13일
thanks a lot but bitget have a maximum less than 2^53
Walter Roberson
Walter Roberson 2012년 5월 14일
bitget() does not have such a restriction in R2009b.
http://www.mathworks.com/help/releases/R2009b/techdoc/ref/bitget.html
However, you may have difficulty constructing an unsigned numeric object with higher-order bits set in R2009b. That is a problem with the MATLAB parser, not with the operation of bitget.

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

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by