0% found this document useful (0 votes)
170 views3 pages

Experiment 1 Amplitude Shift Keying

This document describes an experiment to plot the waveform for binary amplitude shift keying (BASK) using Scilab. It provides theory on amplitude shift keying (ASK) modulation where the amplitude of the carrier signal is varied based on the logic states (0 or 1) of the input bit stream. The Scilab program defines time and amplitude variables, generates square wave and cosine carrier signals, and plots the message signal, carrier signal, and modulated ASK signal in three subplots. The output shows the waveforms for the experiment.

Uploaded by

Bindhu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
170 views3 pages

Experiment 1 Amplitude Shift Keying

This document describes an experiment to plot the waveform for binary amplitude shift keying (BASK) using Scilab. It provides theory on amplitude shift keying (ASK) modulation where the amplitude of the carrier signal is varied based on the logic states (0 or 1) of the input bit stream. The Scilab program defines time and amplitude variables, generates square wave and cosine carrier signals, and plots the message signal, carrier signal, and modulated ASK signal in three subplots. The output shows the waveforms for the experiment.

Uploaded by

Bindhu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

`

EXPERIMENT 1

Amplitude Shift Keying

AIM:To plot the wave form for Binary Amplitude Shift Keying (BASK) signal using
SCILAB for a stream of bits.

THEORY:

Amplitude Shift Keying (ASK) is the digital modulation technique. In amplitude shift keying,
the amplitude of the carrier signal is varied to create signal elements. Both frequency and
phase remain constant while the amplitude changes. In ASK, the amplitude of the carrier
assumes one of the two amplitudes dependent on the logic states of the input bit stream. This
modulated signal can be expressed as:

Amplitude shift keying (ASK) in the context of digital signal communications is a


modulation process, which imparts to a sinusoid two or more discrete amplitude levels. These
are related to the number of levels adopted by the digital message. For a binary message
sequence there are two levels, one of which is typically zero. Thus the modulated waveform
consists of bursts of a sinusoid. Figure 1 illustrates a binary ASK signal (lower), together
with the binary sequence which initiated it (upper). Neither signal has been band limited.

Fig: an ASK signal (below) and the message (above)


There are sharp discontinuities shown at the transition points. These result in the signal

1
`

having an unnecessarily wide bandwidth. Band limiting is generally introduced before


transmission, in which case these discontinuities would be „rounded off‟. The band limiting
may be applied to the digital message, or the modulated signal itself. The data rate is often
made a sub-multiple of the carrier frequency. This has been done in the waveform of Fig.

SCILAB PROGRAM:-

clc; //clears the command window


clear all; //clears variables
clf; //clear the current window to default values
t=[0:0.01:4.4*%pi]; // defining the interval t
A=5; //amplitude is set to 5
Wc=5;
Vm=A.*squarewave(t); // the second parameter in the squarewave function is the percent of
. the period in which the signal is positive
Vc=A.*cos(wc.*t); //carrier signal
Fc=wc/(2*%pi);
subplot(3,1,1);
plot(t,Vm,‟red‟);
xlable(“time”);
ylable(“amplitude of message signal”);
subplot(3,1,2);
plot(t,Vc,‟green‟);
xlable(“time”);
ylable(“amplitude of carrier signal”);
fd=0.5;///frequency deviation
subplot(3,1,3);
Vf=A.*cos(2.*%pi.*(fc+Vm.*fd).*t);
plot(t,Vf,‟blue‟);
xlable(“time”);
ylable(“amplitude of FSK signal”);

2
`

OBSERVATION:-
Output waveforms

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy