Encoding the signal with 16 bits
Afficher commentaires plus anciens
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
Réponses (1)
Wayne King
le 13 Sep 2012
Modifié(e) : Wayne King
le 13 Sep 2012
Have you tried using the 'native' option when you read the data.
[f,Fs] = wavread('wolf.wav','native');
class(f)
7 commentaires
Pat
le 13 Sep 2012
Wayne King
le 13 Sep 2012
Did you try using the 'native' option as I suggested? See my example.
Walter Roberson
le 13 Sep 2012
y0 = int16(f1 * 32768);
Pat
le 14 Sep 2012
Walter Roberson
le 14 Sep 2012
I am not familiar with the wavelet functions.
Pat
le 15 Sep 2012
Catégories
En savoir plus sur Hilbert and Walsh-Hadamard Transforms dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!