How to Simulate the transmission of the audio signal using AM over AWGN channel by using a MATLAB code
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How to Simulate the transmission of the audio signal using AM over AWGN channel by using a MATLAB code using specifictions
for example
Modulation index 𝑚=0.95 and Channel 𝑆/𝑁 =60 dB
0 commentaires
Réponses (1)
Chaitanya Mallela
le 23 Déc 2020
Consider an audio file testSignal.wav . Use audioread function to read the audio file
[y,Fs] = audioread('testSignal.wav');
Consider a carrier signal with frequency Fc <= Fs/2
To satisfy a given modulation index (m) , the carrier amplitude can be considered as
Ac = max(y)/m;
Perform Amplitude Modulation on the audio input
y_ammod = ammod(y,Fc,Fs,0,Ac);
Pass the modulated signal over an AWGN channel with snr
rxSig = awgn(y_ammod,snr,'measured');
0 commentaires
Voir également
Catégories
En savoir plus sur Propagation and Channel Models dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!