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!