Bitshift cannot work on negative numbers
조회 수: 15 (최근 30일)
이전 댓글 표시
I checked information of function"bitshift" on https://ww2.mathworks.cn/help/matlab/ref/bitshift.html?lang=en and find it can work for negative values:
- If k is negative and A is negative, then MATLAB shifts the bits to the right and inserts |k| 1-bits on the left.
but when I applied it, if failed and report as below:
bitshift(-6,1)
Error using bitshift
Double inputs must have integer values in
the range of ASSUMEDTYPE.
My version is 2019b, is it beacuse of version or something else?
By the way, is there any website that allow us to refer to functions in previous version?
댓글 수: 0
채택된 답변
Sulaymon Eshkabilov
2021년 6월 9일
You've overlooked to specify the integer data format type, e.g.:
bitshift(-6,1, 'int8')
bitshift(-6,-1, 'int8')
Works perfectly ok.
댓글 수: 4
추가 답변 (1개)
William
2021년 6월 9일
I believe this is happening for the following reason: The documentation states that "If A is a double array, and ASSUMEDTYPE is not specified, then MATLAB treats A as an unsigned 64-bit integer." What this means is that the function implicitly sets the ASSUMEDTYPE argument to 'uint64'. Since your value of -6 is signed, and is therefore not in the range of a 'uint64', the function issues the error message. This is according to the second rule: "If ASSUMEDTYPE is specified, then all elements in A must have integer values within the range of ASSUMEDTYPE."
You can fix this by specifying that the assumed type is a signed integer rather than an unsigned integer. For example, you can use bitshift(-6,1,'int64'). But I would agree with you that the documentation is unclear.
참고 항목
카테고리
Help Center 및 File Exchange에서 MATLAB Compiler SDK에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!