testing test
Member level 3
Hello,
I am reading a .wav file using wavread command and then selecting the first column to select the left channel only. But the values of the channels are in floating point like 0.000349 but I need these values to be in bits. How to convert these values to bits? Is there any built-in command or any algorithm that you developed?
Thank you.
I am reading a .wav file using wavread command and then selecting the first column to select the left channel only. But the values of the channels are in floating point like 0.000349 but I need these values to be in bits. How to convert these values to bits? Is there any built-in command or any algorithm that you developed?
Thank you.
Code:
>> x=wavread('new2.wav');
>> y=x(:,1);