Innovation 2: Amplitude Shift Keying
Innovation 2: Amplitude Shift Keying
INNOVATION 2
ASK Modulator
The ASK modulator block diagram comprises of the carrier signal generator, the
binary sequence from the message signal and the band-limited filter. Following
is the block diagram of the ASK Modulator.
DISHA CHAUHAN CSE(Vth SEM) 01011502717
The band-limiting filter, shapes the pulse depending upon the amplitude and
phase characteristics of the band-limiting filter or the pulse-shaping filter.
Advantages of ASK modulation
Following are the benefits or advantages of ASK modulation.
➨ASK modulation can be used to transmit digital data over optical fiber.
APPLICATIONS
ASK is used almost in every digital communication link including your cell
phone and cable TV.
DISHA CHAUHAN CSE(Vth SEM) 01011502717
CODE
x=[ 1 0 0 1 1 0]; % Binary Information
bp=1/5000000; % bit period
disp(' Binary information at Trans mitter :');
disp(x);
%XX representation of transmitting binary information as digital signal XXX
bit=[];
for n=1:1:length(x)
if x(n)==1;
se=ones(1,100)*3;
else x(n)==0;
se=zeros(1,100);
end
bit=[bit se];
end
t1=bp/100:bp/100:100*length(x)*(bp/100);
subplot(3,1,1);
plot(t1,bit,'lineWidth',2.5);grid on;
axis([ 0 bp*length(x) -.5 3]);
ylabel('amplitude(volt)');
xlabel(' time(sec)');
OUTPUT