f=50;R=50;c=3*10^8;
w=2*pi*f;
t=0:0.01:100;
ft=exp(j*w*t);
gt=f*(t-2*R/c);
plot(t,ft)
figure;
plot(t,gt)
这样可以么?