quantize/digitize wav file
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
how can I digitize/quantize .wav file in matlab
well, basically i am trying to modulate it,
[X, Fs, nbits] = wavread('filename');
M=16;
modulated_sig=qammod(X,M);
but it keeps giving me an error saying
??? Error using ==> qammod at 39 Elements of input X must be integers in the range [0, M-1]
Akzeptierte Antwort
Walter Roberson
am 25 Mär. 2011
You need to quantize, just like you did for your generated signal in your earlier versions.
2 Kommentare
Walter Roberson
am 25 Mär. 2011
http://www.mathworks.com/help/toolbox/comm/ref/qammod.html documents that if there are multiple rows in x that the columns will be processed independently, so it is fine to pass multiple columns to qammod. So just process the channels of the wav file through quantize independently and paste the result together:
qX = [quantiz(X(:,1),...,0:M-1), quantiz(X(:,2),...,0:M-1];
and pass qX to qammod.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Modulation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!