Generating and plotting PAM4 signal.
显示 更早的评论
I'm trying to plot a PAM4 signal. I've generated the signal as:
data = randi([0 1],400,1);
hModulator = comm.PAMModulator(4,'BitInput',true);
modData = step(hModulator, data);
Now, I want to plot the 'modData' to obtain the waveform. I'm getting error while trying to use 'modData' and 'data' as variables for the plot() function. How can I obtain the PAM4 waveform plot?
回答(1 个)
Harshavardhan Kallam
2018-1-7
0 个投票
Hello, If you run the above code and check the length of data and modData, you will see both are of different length.
Try plot(modData, Data(1:200),1)); I hope this will work
Thank You.
类别
在 帮助中心 和 File Exchange 中查找有关 MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!