Encoding the signal with 16 bits
2 次查看(过去 30 天)
显示 更早的评论
I have a sound wave
I have a code
[f,Fs] = wavread('wolf.wav');
sound(f, Fs);
please tell how to encode the soundwave by 16 bits
0 个评论
回答(1 个)
Wayne King
2012-9-13
编辑:Wayne King
2012-9-13
Have you tried using the 'native' option when you read the data.
[f,Fs] = wavread('wolf.wav','native');
class(f)
7 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!