Can the function comm.linearEqualizer of MATLAB equalize 16QAM signals with CMA algorithm ?
7 次查看(过去 30 天)
显示 更早的评论
I want to use CMA to equalize 16QAM signals. Does comm.linearEqualizer come with MATLAB to support 16QAM ?
Is the following statement true ? Thanks a lot
Constell = qammod((0:M-1)',M);
NonConstell = Constell/abs(Constell(1));
eqlms = comm.LinearEqualizer('Algorithm','CMA',...
'Constellation', NonConstell.',...
'NumTaps',CMAtaps,...
'StepSize',CMAStepSize,...
'InputSamplesPerSymbol',2,...
'WeightUpdatePeriod',2);
0 个评论
回答(1 个)
Meet
2023-4-6
Hi,
According to the details mentioned in the documentation of comm.LinearEqualizer, the 'Constellation' property do not have any such input constraints, you can provide a vector of any input size to this field. Also, the description of the CMA algorithm provided on the same page does not mention any such restrictions. So you can provide 16QAM signals to the comm.LinearEqualizer function.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 QAM 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!