資源簡介
用matlab仿真時分復用的調制解調過程
代碼片段和文件信息
%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?Code?for?Time?Division?Multiplexing
%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?Code?By:-?Debaraj?Rana
%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?mail-?debaraj.rana@ymail.com
%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?Dept.?Of?Electronics?&?Telecom.?Engg
%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?%?VSSUT?BurlaORISSA
clc;
close?all;
clear?all;
%?Signal?generation
x=0:.5:4*pi;?????????????????????????????%?siganal?taken?upto?4pi
sig1=8*sin(x);???????????????????????????%?generate?1st?sinusoidal?signal
l=length(sig1);
sig2=8*triang(l);????????????????????????%?Generate?2nd?traingular?Sigal
%?Display?of?Both?Signal
subplot(221);??????????????????????????
plot(sig1);
title(‘Sinusoidal?Signal‘);
ylabel(‘Amplitude--->‘);
xlabel(‘Time--->‘);
subplot(222);
plot(sig2);
title(‘Triangular?Signal‘);
ylabel(‘Amplitude--->‘);
xlabel(‘Time--->‘);
%?Display?of?Both?Sampled?Signal
subplot(223);
stem(sig1);
title(‘Sampled
- 上一篇:疊加平均去噪matlab仿真程序
- 下一篇:基于matlab的數字水印系統
評論
共有 條評論