Added presentation; DE-QPSK; CD with FFT; split-step Fourier
[4yp.git] / plotp.m
CommitLineData
f9a73e9e
AIL
1function plotp(x)
2 if length(x) > 100
3 plot(angle(x(1:100)))
4 else
5 plot(angle(x(1:end)))
6 end
7end