Encoding the signal with 16 bits
이전 댓글 표시
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
답변 (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
Pat
2012년 9월 13일
Wayne King
2012년 9월 13일
Did you try using the 'native' option as I suggested? See my example.
Walter Roberson
2012년 9월 13일
y0 = int16(f1 * 32768);
Pat
2012년 9월 14일
Walter Roberson
2012년 9월 14일
I am not familiar with the wavelet functions.
Pat
2012년 9월 15일
카테고리
도움말 센터 및 File Exchange에서 Hilbert and Walsh-Hadamard Transforms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!