How do i replace the function modem.qammod with the function qammod?
21 ビュー (過去 30 日間)
古いコメントを表示
Sanket Shettar
2021 年 6 月 1 日
回答済み: Arthi Sathyamurthi
2021 年 7 月 22 日
For this line of code:
hmod = modem.qammod('M',M, 'SymbolOrder','gray'), where M = 16
0 件のコメント
採用された回答
Arthi Sathyamurthi
2021 年 7 月 22 日
Hello Sanket,
To modulate an input signal x by using QAM with the specified modulation order M and the symbol order symOrder use the qammod function in the following format.
y = qammod(x,M,symOrder)
You can use the following code corresponding to the function specified by you,
% x is the signal you wish to modulate
M = 16;
hmod = qammod(x,M,'gray');
% The default symbol order is gray, so you can remove if you don’t want to specify it explicitly
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Modulation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!