Using qammod: How can you set the carrier frequency? (16QAM)
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
qammod documentation says it produces a baseband quadrature amplitude modulated (QAM) signal. As far as I understand, baseband means unmodulated. So what is the frequency at which is modulates your bitstream and how can I set it otherwise to 8Ghz? Please help
0 Commenti
Risposte (1)
Yukthi S
il 12 Dic 2024
I got that you want to explicitly define the carrier frequency to perform QAM modulation.
To do so, you can use “modulate” function available in MATLAB.
fc=8e9; %define the carrier frequency
[y,t]=modulate(x, fc, fs,’qam’); %modulates the input signal “x” using QAM and fc=8GHz
You can refer to the following link to know more about “modulate” function:https://in.mathworks.com/help/signal/ref/modulate.html
0 Commenti
Vedere anche
Categorie
Scopri di più su QAM in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!