Bitshift cannot work on negative numbers

13 vues (au cours des 30 derniers jours)
Yuxin Gao
Yuxin Gao le 9 Juin 2021
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?

Réponse acceptée

Sulaymon Eshkabilov
Sulaymon Eshkabilov le 9 Juin 2021
You've overlooked to specify the integer data format type, e.g.:
bitshift(-6,1, 'int8')
bitshift(-6,-1, 'int8')
Works perfectly ok.
  4 commentaires
Yuxin Gao
Yuxin Gao le 12 Juin 2021
It works, thank you!
Sulaymon Eshkabilov
Sulaymon Eshkabilov le 12 Juin 2021
Most welcome!

Connectez-vous pour commenter.

Plus de réponses (1)

William
William le 9 Juin 2021
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.
  1 commentaire
Yuxin Gao
Yuxin Gao le 12 Juin 2021
bitshift(-6,1,'int64') exactly works ,thank you!

Connectez-vous pour commenter.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by