LTE QPSK 16QAM星座图、调制符号与bit序列映射关系

1. 星座图

在MATLAB中,constellation是一个系统对象,调用constellation可以计算和画出星座图。
语法:

out = constellation(input); 返回星座图的具体数值
constellation(input);       画出星座图

example:

QAM = comm.comm.RectangularQAMModulator(16);
out = constellation(QAM)

输出为

out =

  -3.0000 + 3.0000i
  -3.0000 + 1.0000i
  -3.0000 - 1.0000i
  -3.0000 - 3.0000i
  -1.0000 + 3.0000i
  -1.0000 + 1.0000i
  -1.0000 - 1.0000i
  -1.0000 - 3.0000i
   1.0000 + 3.0000i
   1.0000 + 1.0000i
   1.0000 - 1.0000i
   1.0000 - 3.0000i
   3.0000 + 3.0000i
   3.0000 + 1.0000i
   3.0000 - 1.0000i
   3.0000 - 3.0000i
constellation(QAM)

运行结果为:
在这里插入图片描述

2. LTE QPSK调制器映射

3. LTE 16QAM调制器映射


版权声明:本文为LuminCynthia_原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。