how can i write my demodualted voice signal to a file
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
For AM modulation i gave my voice as input.i am able to observe my demodulated signal in frequency spectrum but i want to listen the demodulated signal ...so how can i listen the demodulated signal ?
1 Kommentar
David K.
am 29 Aug. 2019
I assume that to initially get to the frequency spectrum you used the fft. To listen to it you need to convert back to the time domain with the inverse fft.
X = ifft(Y,n)
Then, if you want to listen with matlab you can use
sound(X, Fs);
where Fs is the sampling frequency of your song.
You could also export it if you want to listen outside of matlab
filename = 'song.wav';
audiowrite(filename,X,Fs);
Antworten (0)
Siehe auch
Kategorien
Mehr zu Spectral Measurements finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!