"Error using bitxor Double inputs must have integer values in the range of ASSUMEDTYPE.

8 Ansichten (letzte 30 Tage)
While running my code there occurs an error like "Error using bitxor Double inputs must have integer values in the range of ASSUMEDTYPE."
R_da_new = bitxor(RR_da,sy,'uint64');
The error occurs in the above line. Here RR_da and sy are vectors of size (1 x 65536). So i give the assumed type as uint64. But still the error occurs. Please help me with the error

Akzeptierte Antwort

Birdman
Birdman am 3 Apr. 2018
Bearbeitet: Birdman am 3 Apr. 2018
The error probably pops up because of the fact that the maximum value in either RR_da or sy is greater than 2^(64)-1 or the minimum value is less than 0. Check the max and min values in your arrays by using max and min functions to see if any value exceeds the given boundaries of uint64.
To see documentation page of uint64: uint64

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by