How do i replace the function modem.qammod with the function qammod?

조회 수: 50 (최근 30일)
For this line of code:
hmod = modem.qammod('M',M, 'SymbolOrder','gray'), where M = 16

채택된 답변

Arthi Sathyamurthi
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개)

카테고리

Help CenterFile Exchange에서 Modulation에 대해 자세히 알아보기

태그

제품


릴리스

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by