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!