How to perform bitwise xor operation for audio scrambling??

3 views (last 30 days)
Hello,
I using DWT and make scrambling for mono type audio. In my research, i need to use bit wise xor function for audio coefficients and keys. First, I change the format of audio coefficients from negative float value to 64 bit binary value using "c=num2bin(q,c)" where q is quantizer and c is audio coefficients. The problem is i can't xor with audio coefficients and key. This error occur " Undefined function 'bitxor' for input arguments of type'char'. " How should I continue to get audio scrambled value?? PFA for errors
I would be grateful if someone help me in this matter :)

Accepted Answer

Walter Roberson
Walter Roberson on 4 Feb 2018
Edited: Walter Roberson on 4 Feb 2018
Subtract '0' (the character for the digit 0) from the char to get the numeric values.
However, in your previous post on this topic, it was recommended that you use other approaches: in particular typecast to uint64 and then bitget().
  7 Comments
Walter Roberson
Walter Roberson on 4 Feb 2018
What is test in this context? I can tell from the error message that whatever it is a scalar value that is not int64 or uint64
I would like to take this opportunity to again recommend that you do not use num2bin() and bin2num() for this work.
[sound, fs] = audioread('SomeFileName.wav');
sound_bits = reshape( (dec2bin(typecast(sound, 'uint8'), 8) - '0').', 1, []);
Su Latt Sandi
Su Latt Sandi on 5 Feb 2018
Thanks Sir, it's working properly, and as I'm beginner in Matlab so I'm sorry if i make mistake. And I want to know how to convert back to get values that range of -1 to +1 to write audio.

Sign in to comment.

More Answers (0)

Categories

Find more on Wavelet Toolbox in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!