我能够使用以下代码成功读取.wav文件。
[y,Fs,nbits,opts] = wavread('MyFile.wav','native')
所以我现在从文件中知道存储在y
中的数据,sample rate (Fs)
,nbits
16
,'native'
通知我数据是uint16
类型。
现在我想一点一点地读取数据值。我已经知道的每个数据值由 16 位组成。
有没有办法一点一点地读取一个数据值。因此,对于uint16
数据值,我想阅读bit 0
和bits 1-15
。然后我希望阅读位 0 给我一个值,位 1-15 给我一个值。这可能吗?
我知道fread
但我只知道如何在逐字节读取时使用它。
你不需要三行来做你正在做的事情,因为bitget接受一个位位置数组来获取,并给你一个位数组作为输出。
Bit(14:16) = bitget(Sample(:,1),14:16);
或者对于位 14,将您的值移到最右边并用二进制 1 屏蔽它
bitshift(Sample(:,1),-14)
bitand(Sample(:,1),1)
好吧,当你设法回答自己的问题时,总是很高兴。所以这是我发现我可以做的:
[y,Fs,nbits,opts] = wavread('MyFile.wav','native')
Sample = y(1:10,1); %Takes 10 data values
%I know I have uint16 data type
%I then take a bit at a time from the data value
Bit_16 = bitget(Sample(:,1),16);
Bit_15 = bitget(Sample(:,1),15);
Bit_14 = bitget(Sample(:,1),14);
and so on . . .
%I could then produce a matrix from the individual bit values
Matr = [Bit_16,Bit_15,Bit_14,...,];
%Each row of the matrix is now the desired binary number
%Next steps, convert to string and then to a decimal number
Str = num2str(Matr);
15-bit value = bin2dec(Str);
然后,您可以仅对 1 位执行上述相同操作