Bitshift cannot work on negative numbers

13 visualizaciones (últimos 30 días)
Yuxin Gao
Yuxin Gao el 9 de Jun. de 2021
Comentada: Sulaymon Eshkabilov el 12 de Jun. de 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?

Respuesta aceptada

Sulaymon Eshkabilov
Sulaymon Eshkabilov el 9 de Jun. de 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 comentarios
Yuxin Gao
Yuxin Gao el 12 de Jun. de 2021
It works, thank you!
Sulaymon Eshkabilov
Sulaymon Eshkabilov el 12 de Jun. de 2021
Most welcome!

Iniciar sesión para comentar.

Más respuestas (1)

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

Iniciar sesión para comentar.

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by