yanmingzhi
2008-09-05, 08:39
题目:1用matlab产生一个频率分别为10,5的余弦和正弦叠加信号作为信源,两个频率分量相同,总信号功率为2 设载波频率为40
2 用matlab画出残留边带为0.2fm的vsb调制信号 该信号功率普密度 相干解调后的信号波形。 分析在awgn信道下方针系统的性能;。
clear;
t=0:0.05:50
f1 = 10;
f2=5;
xa1 = cos(2*pi*f1*t);
xa2 = sin(2*pi*f2*t);
subplot(5,1,1)
plot(t,xa1);grid
xlabel('时间t');ylabel('幅度');
title('余弦信号');
axis([0 5 -1 1])
subplot(5,1,2)
plot(t,xa2);grid
xlabel('时间t');ylabel('幅度');
title('正弦信号');
axis([0 5 -1 1])
xa3=xa1+xa2;
subplot(5,1,3)
plot(t,xa3);grid
axis([0 5 -2 2]) 目前只做到这里 哪位高手能把剩下的做好 谢谢了 !!!!!!!!!!
2 用matlab画出残留边带为0.2fm的vsb调制信号 该信号功率普密度 相干解调后的信号波形。 分析在awgn信道下方针系统的性能;。
clear;
t=0:0.05:50
f1 = 10;
f2=5;
xa1 = cos(2*pi*f1*t);
xa2 = sin(2*pi*f2*t);
subplot(5,1,1)
plot(t,xa1);grid
xlabel('时间t');ylabel('幅度');
title('余弦信号');
axis([0 5 -1 1])
subplot(5,1,2)
plot(t,xa2);grid
xlabel('时间t');ylabel('幅度');
title('正弦信号');
axis([0 5 -1 1])
xa3=xa1+xa2;
subplot(5,1,3)
plot(t,xa3);grid
axis([0 5 -2 2]) 目前只做到这里 哪位高手能把剩下的做好 谢谢了 !!!!!!!!!!