Encoding the signal with 16 bits

2 views (last 30 days)
Pat
Pat on 13 Sep 2012
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

Answers (1)

Wayne King
Wayne King on 13 Sep 2012
Edited: Wayne King on 13 Sep 2012
Have you tried using the 'native' option when you read the data.
[f,Fs] = wavread('wolf.wav','native');
class(f)
  7 Comments
Walter Roberson
Walter Roberson on 14 Sep 2012
I am not familiar with the wavelet functions.
Pat
Pat on 15 Sep 2012
ok walter Thanks

Sign in to comment.

Categories

Find more on Wavelet Toolbox in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!