Hi Christopher,
The constellation diagram observed in the 5G Waveform Generator App are those of the OFDM modulated waveform. Since, the 64 QAM modulated symbols, are performed OFDM modulation, they no longer be in the 64 QAM modulation. The constellation plot shows only the symbols after OFDM modulation.
One way to check the constellation diagram before OFDM modulation is through, performing OFDM demodulation for resultant waveform, using nrOFDMDemodulate and then plot functions. Try these steps:
- Export the waveform to workspace, using Export To Workspace. This gives the structure containing the waveform details
- Let the variable name be var. For the example in question, 200 MHz bandwidth and 60 kHz SCS, there are 264 resource blocks. With this information, use nrOFDMDemodulate function. Like,
rxGrid = nrOFDMDemodulate(var.waveform,264,60,0);
- Now, use the plot function, to plot the constellation of each OFDM symbol. For example, plot symbols present in first OFDM symbols, Like
Hope this helps.
Regards,
Sriram