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!