• 大小: 2KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-06-01
  • 语言: Matlab
  • 标签:

资源简介

用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

评论

共有 条评论

相关资源