SlideShare a Scribd company logo
1 of 59
Download to read offline
Principles of Telecommunications
• Communication is the largest sector of the
electronics field, hence knowledge &
understanding is a must for every student
• The field of Electronic Communication changes
so fast
• Need for Firm Grounding in Fundamentals: also
understanding of the real world components,
circuits, equipment & systems in everyday use.
• Balance in Principles of latest techniques
• Study the system level understanding
EEB317 Principles of Telecoms
•Signals & Systems
•Amplitude Modulation
•Angle Modulation
•Detection & Demodulation
•Noise in Communications System
Signals & Systems
•Classification
•Power & Energy Spectral Density
•Correlation
•Fourier Series & Transform
•Convolution
Overview
• Tx of information between 2 distant points
• Dominated by 4 important sources: speech,
television, facsimile & personal computers
• Three basic processes:
• Transmitter, Channel & Receiver
Communication System
Communication System
Classification of signals & Systems
• A system is an interacting set of physical
objects or physical conditions called system
components
• A signal: set of information or data. Can be
input, output or internal
• Signals may be functions of independent
variables such as time, distance, force, position,
pressure, temp … for simplicity only time will be
used in this class
• Mathematical models are mathematical
equations that represent signals & systems
• They permit quantitative analysis and design of
signals & systems
• Continuous-time signal x(t), has a value
specified for all points in time, & a continuous-
time system operates on and produces
continuous-time signals
Continuous-time signal
Signals
Signals
• Discrete-time signal: Signal specified only at
discrete values
• Analog signal: Signal whose amplitude can
take on any value in a continuous range
• Digital signal: Signal whose amplitude can
take on only finite number of values (M-ary)
• Periodic signal: Signal g(t) is periodic if for
some +ve constant T0 (period):
)()( 0Ttgtg 
DT signals
Energy & Power Signals
• Energy signal: Signal with finite energy & zero
power
• Power signal: Signal with finite power & infinite
energy
 


dttgE
2
)(












2/
2/
2
2/
2/
2
)(
1
lim
)(
1
lim00
T
TT
T
TT
dttg
T
P
dttg
T
P
Are these energy or power signals?
•
Energy & Power Signals examples
• Since in (a) amplitude approaches zero
• It’s an energy signal:
• Since (b) is periodic, it’s a power signal:
t
 





84422)(
0
20
1
22 2/
dtedtdttgE
t
3
1
3
2
1
)(
1
)(
1
lim
32
1
1
1
1
1
21
1
22/
2/
2


 
t
dttdttg
T
dttg
T
P
T
TT
Worked example
• Determine the power of the following signals
)cos()(   tCtg












2/
2/
22
2/
2/
22
2/
2/
22/
2/
2
2
)]22cos(1[
2
)(cos
1
)cos(
1
)(
1
lim
T
T
T
T
T
T
T
TT
C
dtt
T
C
P
dttC
T
dttC
T
dttg
T
P


Work these out
• (b)
• (c)
)cos()cos()( 222111   tCtCtg
21  
tj
Detg 0
)( 

More examples
• Compute the signal energy & signal power for
the following complex valued signal and
indicate whether the signal is an energy or
power signal
tj
Aetg 2
)( 
More examples
• Since g(t) is a periodic signal, it cannot be an
energy signal. Therefore compute the signal
power first. Signal Period:
• Since the signal has a finite power, it is a power
signal & has infinite energy (VERIFY!)

1
0 T
  2/122
2
2 1
1
/11
1
/11
1
AtAdtAdtAeP
t
t
tj
t
t
t
t







Deterministic & Random Signals
• Deterministic signal: Physical description is
known in either a mathematical or graphical
form. eg:
• Random signal: Signal known only in terms of
probabilistic description such as mean value,
mean square value rather than its complete
mathematical or graphical description
• eg: noise signal, message signal
)1(tan)( 1
 
ttg
Deterministic & Random Signals
• Use matlab to plot a deterministic signal:
• & random noise
• To use matlab you must:
• (a) declare the variables
• (b) since it’s first time, use the plot command
• (c) label the plot
)1(tan)( 1
 
ttg
Signal Operations
• Time shifting: If a signal g(t) is time shifted by
t1 units, it is denoted as f(t) =g(t-t1).
• If t1>0, the shift is to the right (time delay)
• If t1<0, the shift is to the left (time advance)
• To demonstrate time shifting plot the signals:
)1(tan)(
)1(tan)(
)(tan)(
1
1
1






ttY
ttG
ttg
Time Shift matlab code
• close all; % close graghs
• clear all; % clear all the variables & functions from memory
• t = -5:.3:5; % declear variable "t"
• g = atan(t);
• G = atan(t-1);
• Y = atan(t+1);
• plot(t,g); % plots the function "g"
• hold;
• plot(t,G,'r'); % plots “G”
• plot(t,Y,'k');
• hold off;
• grid on;
• xlabel('t');
• ylabel('g(t),G(t) & Y(t)');
• title('time shifting demonstration');
• legend('g-original','G-delay','Y-advance');
Time Shift gragh
Signal Operations
• Time Scaling: Compression or expansion of a
signal
• Signal f(t) is g(t) compressed by a factor of ‘a’ if
f(t) = g(at), therefore f(t/a) = g(t) for a>1
• Similarly f(t) is g(t) expanded (slowed down) by
a factor of ‘a’ if f(t) = g(t/a), therefore f(at) = g(t)
for a<1
• To time-scale a signal by a factor of ‘a’, replace
t with at.
• If a > 1 the scaling is compressed & if a < 1,
the scaling is expanded.
Time Scaling demonstration
• close all;
• clear all;
• t = -5:.3:5;
• f = sawtooth(t);
• G = sawtooth(2*t);
• F = sawtooth(t/2);
• plot(t,f); hold;
• plot(t,G,'r');
• grid on;
• xlabel('t');
• ylabel('f(t) & G(t)');
• title('time scaling demonstration');
• legend('f','G');
Time Scale gragh
Signal Operations
• Time Reversal/Inversion/Folding:
• To time reverse a signal, replace t with –t
• If f(t) is a time resersal of g(t) then
• f(t)=g(-t)
• See the matlab code of g(-t)
Time Reversal Demo-code
• close all; clear all;
• t = -5:.3:5;
• g = atan(t);
• G = atan(-t);
• plot(t,g); % hold;
• plot(t,G,'r'); % hold off;
• grid on;
• xlabel('t');
• ylabel('g(t) & G(t)');
• title('time Reversal Demonstration');
• legend('f-original', 'G-timeReversed');
• Continous time signal: g(t)
• Samples of continuous-time signal: g(nT)
• Discrete-time signal: g(n)
Samples of Continuous-time signal
• close all; clear all;
• t=-5:.5:5;
• g=atan(t);
• plot(t,g);
• ylabel('g(t)');
• grid on;
• title('Continuous-time signal Demonstration');
• figure
• stem(t,g);
• grid on;
• xlabel('nT');
• ylabel('g(nT)');
• title('Samples of Continuous-time signal');
Delta Function
• Delta/Dirac/Unit Impulse function:
Rectangular pulse with an infinitesimally small
width & infinitely large height & an overall area
of unity.





1)(
0)(
dtt
t

 0t
Multiplying a function by delta
• Sampling/Sifting property of delta
  )()(()
)(*)0()()(
TtTfTttf
tfttf




)()()()()(
)0()()0()()(
TfdtTtTfdtTttf
fdttfdtttf


 
 










Sampling/sifting property
• The area under the product of a function with
delta is equal to the value of that function at the
instant where delta is located
• Function f(t) must be continuous where the
delta is located
Unit Step Function
 




t
d
1
0
)(  0
0


t
t


t
tud )()( 
)(t
dt
du

Time Shifted, scaled, reversed step
• Causal function: It’s zero before t = 0 otherwise
is non-causal









)(
)(
)(
a
b
tu
a
b
tu
batu
0
0


t
t
Correlation
• Correlation coefficient cn:
• Cross-correlation:
• Autocorrelation:
11  nc



 dttztg
EE
c
zg
n )()(
1



 dttztggz )()()( 



 dttgtgg )()()( 
Fourier Series
• Fourier analysis considers signals to be
constructed from a sum of complex
exponentials with appropriate frequencies,
amplitude & phases
• Frequency components are the complex
exponentials (sines & cosines) which, when
added together, make up the signal
• Orthogonality of signal set: ntxtxtx )(),...(),( 21
Generalized Fourier Series
nm
nm







1
2211
)()(
...)(...)()()(
n
nn
nn
txctg
txctxctxctg
21 ttt 
dtxtg
Edtx
dtxtg
c
t
t
n
n
t
t
n
t
t
n
n 

 


2
1
2
1
2
1
)(
1)(
2





n
t
t
nm
E
dtxtx
0
)(
2
1
Fourier coefficients
nm xx , Are othorgonal
Exponential FS
• Orthogonality:
• Expon. FS



 

0
)( 0
)(
0
00
0
0
T
dtedtee
T
tnmjtjn
T
tjm 
nm
nm









0
0
0
)(
1
)(
0
T
tjn
n
n
tjn
n
dtetg
T
D
eDtg


Parseval’s Theorem
• Energy of the sum of orthogonal signals is
equal to the sum of their energies:
• Parseval’s theorem:
1
2
1
2
1
2
1
2
1
2
1
222
111
2
1
2
1
)()(
)....()(
);()(
EcdttxcdttxcE
txctg
txctg
t
t
t
t



1g
n
n
ng
g
EcE
EcEcE


2
2
2
21
2
1 ...
Trigonometric Fourier Series
• Trig. FS

















01
1
01
1
01
1
01
1
01
1
0
0
0
0
0
0
0
2
0
0
1
00
2sin)(
2
)(
1
2cos)(
2
2cos
2cos)(
2sin2cosag(t)
Tt
t
n
Tt
t
Tt
tTt
t
Tt
t
n
n
n
n
tdtfntg
T
b
dttg
T
a
tdtfntg
Ttdtfn
tdtfntg
a
tfnbtfna





Fourier Transform & Spectra of
Aperiodic Signals
• The spectrum of a periodic signal is found from
FS of a signal over one period
• Since the FS is a periodic function of time, it is
equal to an aperiodic signal only over the FS
expansion interval, outside this interval it
repeats
• FS is used to produce the spectrum of the
periodic extension but not the spectrum of
aperiodic signal
• To find the spectrum of an aperiodic signal we
use FT
Fourier Transform (FT)
• To develop the FT, let’s start with the exponential FS
representation of a periodic signal over the interval
-T/2<t<T/2
• Let the interval increase until the entire time axis is
encompassed
• Since FT is developed from the FS the conditions for
the existence follow from those of the Dirichlet
conditions



dttg )(
Fourier Transform
)()(
)]([)()(
)]([)()(
)(
1
)(
12
2
2/
2/
0
0
0
fGtg
fGdfefGtg
tgdtetgfG
dtetg
T
D
eDtg
ftj
ftj
T
T
tjn
n
n
tjn
n























Fourier Transform (Spectrum of g(t))
Inverse Fourier Transform
Fourier Transform pair
Fourier Transform Theorems
• FT characteristics are expressed in the form of
theorems
• The theorems are useful in computing FT of
complicated signals
• Linearity:
• If x(t) X(f) & y(t) Y(f)
• Then
• ax(t)+by(t) aX(f)+bY(f)
• Integral in a linear operation



Fourier Transform Theorems
• Time Shift
• If
Then
Prove:
02
0 )()(
)()(
ftj
efXttx
fXtx



)(22)(2
0
)(22)(2
0
00
2
00
00
00
)(])([)]([
)()()]([
)()]([
tfjfjtfj
tfjfjtfj
ftj
efXdexettx
deexdexttx
ttddttt
dtettxttx


























Fourier Transform Theorems
• Time Reversal
)()(
)()(
fXtx
fXtx


Fourier Transform Theorems
• Time scale (Scale change)
)/(
1
)(
)()(
afX
a
atx
fXtx


Frequency Translation
• If
• Then
• Modulation
• If
• then
)()(
)()(
0
2 0
ffXetx
fXtx
tfj



)(
2
1
)(
2
1
2cos)(
)()(
000 ffXffXtftx
fXtx



Inverse FT
• Find the inverse FT of the delta function
)(2
)(2
2
1
)(
2
1
)(
2
1
)]([
)]([)()(
0
0
0
00
1
12
0
0
0
0



























tj
tj
tj
tjtj
ftj
e
e
e
ede
fGdfefGtg
FT of cosine
• Find the FT of the sinusoid (cosine)
)()(][cos
)](2)(2[
2
1
)](
2
1
[][cos
)(
2
1
cos
000
000
0
00
00










t
eet
eet
tjtj
tjtj
FT of rectangle
• Find the FT of a rectangle of width tau













  
  



/22/0)2/(sin
)2/(sin)(
)2/(sin)2/sin(
2/
)2/sin(
2
)(
2
)(2
)(
1
)(
)()(
2/2/
2/2/
2/
2/
nnc
c
t
rect
cX
j
ee
ee
j
X
dtedte
t
rectX
jj
jj
tjtj














Eeb317 principles of telecoms 2015
Eeb317 principles of telecoms 2015

More Related Content

What's hot

2. signal & systems beyonds
2. signal & systems  beyonds2. signal & systems  beyonds
2. signal & systems beyondsskysunilyadav
 
3.Properties of signals
3.Properties of signals3.Properties of signals
3.Properties of signalsINDIAN NAVY
 
SIGNAL OPERATIONS
SIGNAL OPERATIONSSIGNAL OPERATIONS
SIGNAL OPERATIONSmihir jain
 
communication system Chapter 2
communication system Chapter 2communication system Chapter 2
communication system Chapter 2moeen khan afridi
 
Instrumentation Engineering : Signals & systems, THE GATE ACADEMY
Instrumentation Engineering : Signals & systems, THE GATE ACADEMYInstrumentation Engineering : Signals & systems, THE GATE ACADEMY
Instrumentation Engineering : Signals & systems, THE GATE ACADEMYklirantga
 
Ec8352 signals and systems 2 marks with answers
Ec8352 signals and systems   2 marks with answersEc8352 signals and systems   2 marks with answers
Ec8352 signals and systems 2 marks with answersGayathri Krishnamoorthy
 
Module iv sp
Module iv spModule iv sp
Module iv spVijaya79
 
4. operations of signals
4. operations of signals 4. operations of signals
4. operations of signals MdFazleRabbi18
 
Signal and System, CT Signal DT Signal, Signal Processing(amplitude and time ...
Signal and System, CT Signal DT Signal, Signal Processing(amplitude and time ...Signal and System, CT Signal DT Signal, Signal Processing(amplitude and time ...
Signal and System, CT Signal DT Signal, Signal Processing(amplitude and time ...Waqas Afzal
 
The finite time turnpike phenomenon for optimal control problems
The finite time turnpike phenomenon for optimal control problemsThe finite time turnpike phenomenon for optimal control problems
The finite time turnpike phenomenon for optimal control problemsMartinGugat
 
Signals and systems( chapter 1)
Signals and systems( chapter 1)Signals and systems( chapter 1)
Signals and systems( chapter 1)Fariza Zahari
 
Chapter1 - Signal and System
Chapter1 - Signal and SystemChapter1 - Signal and System
Chapter1 - Signal and SystemAttaporn Ninsuwan
 
1.introduction to signals
1.introduction to signals1.introduction to signals
1.introduction to signalsINDIAN NAVY
 
EC8352- Signals and Systems - Unit 2 - Fourier transform
EC8352- Signals and Systems - Unit 2 - Fourier transformEC8352- Signals and Systems - Unit 2 - Fourier transform
EC8352- Signals and Systems - Unit 2 - Fourier transformNimithaSoman
 
Signals and systems ch1
Signals and systems ch1Signals and systems ch1
Signals and systems ch1Ketan Solanki
 
Signals and Systems.pptx
Signals and Systems.pptxSignals and Systems.pptx
Signals and Systems.pptxVairaPrakash2
 

What's hot (18)

2. signal & systems beyonds
2. signal & systems  beyonds2. signal & systems  beyonds
2. signal & systems beyonds
 
3.Properties of signals
3.Properties of signals3.Properties of signals
3.Properties of signals
 
SIGNAL OPERATIONS
SIGNAL OPERATIONSSIGNAL OPERATIONS
SIGNAL OPERATIONS
 
Sns slide 1 2011
Sns slide 1 2011Sns slide 1 2011
Sns slide 1 2011
 
communication system Chapter 2
communication system Chapter 2communication system Chapter 2
communication system Chapter 2
 
Instrumentation Engineering : Signals & systems, THE GATE ACADEMY
Instrumentation Engineering : Signals & systems, THE GATE ACADEMYInstrumentation Engineering : Signals & systems, THE GATE ACADEMY
Instrumentation Engineering : Signals & systems, THE GATE ACADEMY
 
Ec8352 signals and systems 2 marks with answers
Ec8352 signals and systems   2 marks with answersEc8352 signals and systems   2 marks with answers
Ec8352 signals and systems 2 marks with answers
 
Module iv sp
Module iv spModule iv sp
Module iv sp
 
4. operations of signals
4. operations of signals 4. operations of signals
4. operations of signals
 
Signal and System, CT Signal DT Signal, Signal Processing(amplitude and time ...
Signal and System, CT Signal DT Signal, Signal Processing(amplitude and time ...Signal and System, CT Signal DT Signal, Signal Processing(amplitude and time ...
Signal and System, CT Signal DT Signal, Signal Processing(amplitude and time ...
 
The finite time turnpike phenomenon for optimal control problems
The finite time turnpike phenomenon for optimal control problemsThe finite time turnpike phenomenon for optimal control problems
The finite time turnpike phenomenon for optimal control problems
 
Basic concepts
Basic conceptsBasic concepts
Basic concepts
 
Signals and systems( chapter 1)
Signals and systems( chapter 1)Signals and systems( chapter 1)
Signals and systems( chapter 1)
 
Chapter1 - Signal and System
Chapter1 - Signal and SystemChapter1 - Signal and System
Chapter1 - Signal and System
 
1.introduction to signals
1.introduction to signals1.introduction to signals
1.introduction to signals
 
EC8352- Signals and Systems - Unit 2 - Fourier transform
EC8352- Signals and Systems - Unit 2 - Fourier transformEC8352- Signals and Systems - Unit 2 - Fourier transform
EC8352- Signals and Systems - Unit 2 - Fourier transform
 
Signals and systems ch1
Signals and systems ch1Signals and systems ch1
Signals and systems ch1
 
Signals and Systems.pptx
Signals and Systems.pptxSignals and Systems.pptx
Signals and Systems.pptx
 

Similar to Eeb317 principles of telecoms 2015

SP_BEE2143_C1.pptx
SP_BEE2143_C1.pptxSP_BEE2143_C1.pptx
SP_BEE2143_C1.pptxIffahSkmd
 
Classification of-signals-systems-ppt
Classification of-signals-systems-pptClassification of-signals-systems-ppt
Classification of-signals-systems-pptMayankSharma1126
 
Signal & systems
Signal & systemsSignal & systems
Signal & systemsAJAL A J
 
Ch4 (1)_fourier series, fourier transform
Ch4 (1)_fourier series, fourier transformCh4 (1)_fourier series, fourier transform
Ch4 (1)_fourier series, fourier transformShalabhMishra10
 
Signals and Systems.pptx
Signals and Systems.pptxSignals and Systems.pptx
Signals and Systems.pptxVairaPrakash2
 
Signals and Systems-Fourier Series and Transform
Signals and Systems-Fourier Series and TransformSignals and Systems-Fourier Series and Transform
Signals and Systems-Fourier Series and TransformPraveen430329
 
Ct signal operations
Ct signal operationsCt signal operations
Ct signal operationsmihir jain
 
Introduction to communication system part 2Unit-I Part 2.pptx
Introduction to communication system part 2Unit-I   Part 2.pptxIntroduction to communication system part 2Unit-I   Part 2.pptx
Introduction to communication system part 2Unit-I Part 2.pptxAshishChandrakar12
 
Introduction of communication system_Unit-I Part 2.pptx
Introduction of communication system_Unit-I   Part 2.pptxIntroduction of communication system_Unit-I   Part 2.pptx
Introduction of communication system_Unit-I Part 2.pptxAshishChandrakar12
 
Unit 1 -Introduction to signals and standard signals
Unit 1 -Introduction to signals  and standard signalsUnit 1 -Introduction to signals  and standard signals
Unit 1 -Introduction to signals and standard signalsDr.SHANTHI K.G
 
04 AD and DA ZoH.pptx
04 AD and DA ZoH.pptx04 AD and DA ZoH.pptx
04 AD and DA ZoH.pptxSaadAli105813
 
PPT Chapter-1-V1.pptx__26715_1_1539251776000.pptx.pptx
PPT Chapter-1-V1.pptx__26715_1_1539251776000.pptx.pptxPPT Chapter-1-V1.pptx__26715_1_1539251776000.pptx.pptx
PPT Chapter-1-V1.pptx__26715_1_1539251776000.pptx.pptxidrissaeed
 
Ss important questions
Ss important questionsSs important questions
Ss important questionsSowji Laddu
 
Overview of sampling
Overview of samplingOverview of sampling
Overview of samplingSagar Kumar
 

Similar to Eeb317 principles of telecoms 2015 (20)

Chapter 2
Chapter 2Chapter 2
Chapter 2
 
SP_BEE2143_C1.pptx
SP_BEE2143_C1.pptxSP_BEE2143_C1.pptx
SP_BEE2143_C1.pptx
 
Classification of-signals-systems-ppt
Classification of-signals-systems-pptClassification of-signals-systems-ppt
Classification of-signals-systems-ppt
 
Signal & systems
Signal & systemsSignal & systems
Signal & systems
 
Ch4 (1)_fourier series, fourier transform
Ch4 (1)_fourier series, fourier transformCh4 (1)_fourier series, fourier transform
Ch4 (1)_fourier series, fourier transform
 
Signals and Systems.pptx
Signals and Systems.pptxSignals and Systems.pptx
Signals and Systems.pptx
 
Lecture13
Lecture13Lecture13
Lecture13
 
Signals and system
Signals and systemSignals and system
Signals and system
 
Signal
SignalSignal
Signal
 
Signals and Systems-Fourier Series and Transform
Signals and Systems-Fourier Series and TransformSignals and Systems-Fourier Series and Transform
Signals and Systems-Fourier Series and Transform
 
Ct signal operations
Ct signal operationsCt signal operations
Ct signal operations
 
Frequency modulation
Frequency modulationFrequency modulation
Frequency modulation
 
Introduction to communication system part 2Unit-I Part 2.pptx
Introduction to communication system part 2Unit-I   Part 2.pptxIntroduction to communication system part 2Unit-I   Part 2.pptx
Introduction to communication system part 2Unit-I Part 2.pptx
 
Introduction of communication system_Unit-I Part 2.pptx
Introduction of communication system_Unit-I   Part 2.pptxIntroduction of communication system_Unit-I   Part 2.pptx
Introduction of communication system_Unit-I Part 2.pptx
 
Unit 1 -Introduction to signals and standard signals
Unit 1 -Introduction to signals  and standard signalsUnit 1 -Introduction to signals  and standard signals
Unit 1 -Introduction to signals and standard signals
 
Lecture 9
Lecture 9Lecture 9
Lecture 9
 
04 AD and DA ZoH.pptx
04 AD and DA ZoH.pptx04 AD and DA ZoH.pptx
04 AD and DA ZoH.pptx
 
PPT Chapter-1-V1.pptx__26715_1_1539251776000.pptx.pptx
PPT Chapter-1-V1.pptx__26715_1_1539251776000.pptx.pptxPPT Chapter-1-V1.pptx__26715_1_1539251776000.pptx.pptx
PPT Chapter-1-V1.pptx__26715_1_1539251776000.pptx.pptx
 
Ss important questions
Ss important questionsSs important questions
Ss important questions
 
Overview of sampling
Overview of samplingOverview of sampling
Overview of sampling
 

Recently uploaded

Autodesk Construction Cloud (Autodesk Build).pptx
Autodesk Construction Cloud (Autodesk Build).pptxAutodesk Construction Cloud (Autodesk Build).pptx
Autodesk Construction Cloud (Autodesk Build).pptxMustafa Ahmed
 
UNIT-2 image enhancement.pdf Image Processing Unit 2 AKTU
UNIT-2 image enhancement.pdf Image Processing Unit 2 AKTUUNIT-2 image enhancement.pdf Image Processing Unit 2 AKTU
UNIT-2 image enhancement.pdf Image Processing Unit 2 AKTUankushspencer015
 
analog-vs-digital-communication (concept of analog and digital).pptx
analog-vs-digital-communication (concept of analog and digital).pptxanalog-vs-digital-communication (concept of analog and digital).pptx
analog-vs-digital-communication (concept of analog and digital).pptxKarpagam Institute of Teechnology
 
SLIDESHARE PPT-DECISION MAKING METHODS.pptx
SLIDESHARE PPT-DECISION MAKING METHODS.pptxSLIDESHARE PPT-DECISION MAKING METHODS.pptx
SLIDESHARE PPT-DECISION MAKING METHODS.pptxCHAIRMAN M
 
Maher Othman Interior Design Portfolio..
Maher Othman Interior Design Portfolio..Maher Othman Interior Design Portfolio..
Maher Othman Interior Design Portfolio..MaherOthman7
 
Instruct Nirmaana 24-Smart and Lean Construction Through Technology.pdf
Instruct Nirmaana 24-Smart and Lean Construction Through Technology.pdfInstruct Nirmaana 24-Smart and Lean Construction Through Technology.pdf
Instruct Nirmaana 24-Smart and Lean Construction Through Technology.pdfEr.Sonali Nasikkar
 
15-Minute City: A Completely New Horizon
15-Minute City: A Completely New Horizon15-Minute City: A Completely New Horizon
15-Minute City: A Completely New HorizonMorshed Ahmed Rahath
 
Raashid final report on Embedded Systems
Raashid final report on Embedded SystemsRaashid final report on Embedded Systems
Raashid final report on Embedded SystemsRaashidFaiyazSheikh
 
Diploma Engineering Drawing Qp-2024 Ece .pdf
Diploma Engineering Drawing Qp-2024 Ece .pdfDiploma Engineering Drawing Qp-2024 Ece .pdf
Diploma Engineering Drawing Qp-2024 Ece .pdfJNTUA
 
handbook on reinforce concrete and detailing
handbook on reinforce concrete and detailinghandbook on reinforce concrete and detailing
handbook on reinforce concrete and detailingAshishSingh1301
 
What is Coordinate Measuring Machine? CMM Types, Features, Functions
What is Coordinate Measuring Machine? CMM Types, Features, FunctionsWhat is Coordinate Measuring Machine? CMM Types, Features, Functions
What is Coordinate Measuring Machine? CMM Types, Features, FunctionsVIEW
 
litvinenko_Henry_Intrusion_Hong-Kong_2024.pdf
litvinenko_Henry_Intrusion_Hong-Kong_2024.pdflitvinenko_Henry_Intrusion_Hong-Kong_2024.pdf
litvinenko_Henry_Intrusion_Hong-Kong_2024.pdfAlexander Litvinenko
 
NEWLETTER FRANCE HELICES/ SDS SURFACE DRIVES - MAY 2024
NEWLETTER FRANCE HELICES/ SDS SURFACE DRIVES - MAY 2024NEWLETTER FRANCE HELICES/ SDS SURFACE DRIVES - MAY 2024
NEWLETTER FRANCE HELICES/ SDS SURFACE DRIVES - MAY 2024EMMANUELLEFRANCEHELI
 
Basics of Relay for Engineering Students
Basics of Relay for Engineering StudentsBasics of Relay for Engineering Students
Basics of Relay for Engineering Studentskannan348865
 
Maximizing Incident Investigation Efficacy in Oil & Gas: Techniques and Tools
Maximizing Incident Investigation Efficacy in Oil & Gas: Techniques and ToolsMaximizing Incident Investigation Efficacy in Oil & Gas: Techniques and Tools
Maximizing Incident Investigation Efficacy in Oil & Gas: Techniques and Toolssoginsider
 
Insurance management system project report.pdf
Insurance management system project report.pdfInsurance management system project report.pdf
Insurance management system project report.pdfKamal Acharya
 
Fuzzy logic method-based stress detector with blood pressure and body tempera...
Fuzzy logic method-based stress detector with blood pressure and body tempera...Fuzzy logic method-based stress detector with blood pressure and body tempera...
Fuzzy logic method-based stress detector with blood pressure and body tempera...IJECEIAES
 
Artificial intelligence presentation2-171219131633.pdf
Artificial intelligence presentation2-171219131633.pdfArtificial intelligence presentation2-171219131633.pdf
Artificial intelligence presentation2-171219131633.pdfKira Dess
 
Circuit Breakers for Engineering Students
Circuit Breakers for Engineering StudentsCircuit Breakers for Engineering Students
Circuit Breakers for Engineering Studentskannan348865
 
Involute of a circle,Square, pentagon,HexagonInvolute_Engineering Drawing.pdf
Involute of a circle,Square, pentagon,HexagonInvolute_Engineering Drawing.pdfInvolute of a circle,Square, pentagon,HexagonInvolute_Engineering Drawing.pdf
Involute of a circle,Square, pentagon,HexagonInvolute_Engineering Drawing.pdfJNTUA
 

Recently uploaded (20)

Autodesk Construction Cloud (Autodesk Build).pptx
Autodesk Construction Cloud (Autodesk Build).pptxAutodesk Construction Cloud (Autodesk Build).pptx
Autodesk Construction Cloud (Autodesk Build).pptx
 
UNIT-2 image enhancement.pdf Image Processing Unit 2 AKTU
UNIT-2 image enhancement.pdf Image Processing Unit 2 AKTUUNIT-2 image enhancement.pdf Image Processing Unit 2 AKTU
UNIT-2 image enhancement.pdf Image Processing Unit 2 AKTU
 
analog-vs-digital-communication (concept of analog and digital).pptx
analog-vs-digital-communication (concept of analog and digital).pptxanalog-vs-digital-communication (concept of analog and digital).pptx
analog-vs-digital-communication (concept of analog and digital).pptx
 
SLIDESHARE PPT-DECISION MAKING METHODS.pptx
SLIDESHARE PPT-DECISION MAKING METHODS.pptxSLIDESHARE PPT-DECISION MAKING METHODS.pptx
SLIDESHARE PPT-DECISION MAKING METHODS.pptx
 
Maher Othman Interior Design Portfolio..
Maher Othman Interior Design Portfolio..Maher Othman Interior Design Portfolio..
Maher Othman Interior Design Portfolio..
 
Instruct Nirmaana 24-Smart and Lean Construction Through Technology.pdf
Instruct Nirmaana 24-Smart and Lean Construction Through Technology.pdfInstruct Nirmaana 24-Smart and Lean Construction Through Technology.pdf
Instruct Nirmaana 24-Smart and Lean Construction Through Technology.pdf
 
15-Minute City: A Completely New Horizon
15-Minute City: A Completely New Horizon15-Minute City: A Completely New Horizon
15-Minute City: A Completely New Horizon
 
Raashid final report on Embedded Systems
Raashid final report on Embedded SystemsRaashid final report on Embedded Systems
Raashid final report on Embedded Systems
 
Diploma Engineering Drawing Qp-2024 Ece .pdf
Diploma Engineering Drawing Qp-2024 Ece .pdfDiploma Engineering Drawing Qp-2024 Ece .pdf
Diploma Engineering Drawing Qp-2024 Ece .pdf
 
handbook on reinforce concrete and detailing
handbook on reinforce concrete and detailinghandbook on reinforce concrete and detailing
handbook on reinforce concrete and detailing
 
What is Coordinate Measuring Machine? CMM Types, Features, Functions
What is Coordinate Measuring Machine? CMM Types, Features, FunctionsWhat is Coordinate Measuring Machine? CMM Types, Features, Functions
What is Coordinate Measuring Machine? CMM Types, Features, Functions
 
litvinenko_Henry_Intrusion_Hong-Kong_2024.pdf
litvinenko_Henry_Intrusion_Hong-Kong_2024.pdflitvinenko_Henry_Intrusion_Hong-Kong_2024.pdf
litvinenko_Henry_Intrusion_Hong-Kong_2024.pdf
 
NEWLETTER FRANCE HELICES/ SDS SURFACE DRIVES - MAY 2024
NEWLETTER FRANCE HELICES/ SDS SURFACE DRIVES - MAY 2024NEWLETTER FRANCE HELICES/ SDS SURFACE DRIVES - MAY 2024
NEWLETTER FRANCE HELICES/ SDS SURFACE DRIVES - MAY 2024
 
Basics of Relay for Engineering Students
Basics of Relay for Engineering StudentsBasics of Relay for Engineering Students
Basics of Relay for Engineering Students
 
Maximizing Incident Investigation Efficacy in Oil & Gas: Techniques and Tools
Maximizing Incident Investigation Efficacy in Oil & Gas: Techniques and ToolsMaximizing Incident Investigation Efficacy in Oil & Gas: Techniques and Tools
Maximizing Incident Investigation Efficacy in Oil & Gas: Techniques and Tools
 
Insurance management system project report.pdf
Insurance management system project report.pdfInsurance management system project report.pdf
Insurance management system project report.pdf
 
Fuzzy logic method-based stress detector with blood pressure and body tempera...
Fuzzy logic method-based stress detector with blood pressure and body tempera...Fuzzy logic method-based stress detector with blood pressure and body tempera...
Fuzzy logic method-based stress detector with blood pressure and body tempera...
 
Artificial intelligence presentation2-171219131633.pdf
Artificial intelligence presentation2-171219131633.pdfArtificial intelligence presentation2-171219131633.pdf
Artificial intelligence presentation2-171219131633.pdf
 
Circuit Breakers for Engineering Students
Circuit Breakers for Engineering StudentsCircuit Breakers for Engineering Students
Circuit Breakers for Engineering Students
 
Involute of a circle,Square, pentagon,HexagonInvolute_Engineering Drawing.pdf
Involute of a circle,Square, pentagon,HexagonInvolute_Engineering Drawing.pdfInvolute of a circle,Square, pentagon,HexagonInvolute_Engineering Drawing.pdf
Involute of a circle,Square, pentagon,HexagonInvolute_Engineering Drawing.pdf
 

Eeb317 principles of telecoms 2015

  • 1. Principles of Telecommunications • Communication is the largest sector of the electronics field, hence knowledge & understanding is a must for every student • The field of Electronic Communication changes so fast • Need for Firm Grounding in Fundamentals: also understanding of the real world components, circuits, equipment & systems in everyday use. • Balance in Principles of latest techniques • Study the system level understanding
  • 2. EEB317 Principles of Telecoms •Signals & Systems •Amplitude Modulation •Angle Modulation •Detection & Demodulation •Noise in Communications System
  • 3. Signals & Systems •Classification •Power & Energy Spectral Density •Correlation •Fourier Series & Transform •Convolution
  • 4. Overview • Tx of information between 2 distant points • Dominated by 4 important sources: speech, television, facsimile & personal computers • Three basic processes: • Transmitter, Channel & Receiver
  • 7.
  • 8. Classification of signals & Systems • A system is an interacting set of physical objects or physical conditions called system components • A signal: set of information or data. Can be input, output or internal • Signals may be functions of independent variables such as time, distance, force, position, pressure, temp … for simplicity only time will be used in this class
  • 9. • Mathematical models are mathematical equations that represent signals & systems • They permit quantitative analysis and design of signals & systems • Continuous-time signal x(t), has a value specified for all points in time, & a continuous- time system operates on and produces continuous-time signals
  • 12. Signals • Discrete-time signal: Signal specified only at discrete values • Analog signal: Signal whose amplitude can take on any value in a continuous range • Digital signal: Signal whose amplitude can take on only finite number of values (M-ary) • Periodic signal: Signal g(t) is periodic if for some +ve constant T0 (period): )()( 0Ttgtg 
  • 14. Energy & Power Signals • Energy signal: Signal with finite energy & zero power • Power signal: Signal with finite power & infinite energy     dttgE 2 )(             2/ 2/ 2 2/ 2/ 2 )( 1 lim )( 1 lim00 T TT T TT dttg T P dttg T P
  • 15. Are these energy or power signals? •
  • 16. Energy & Power Signals examples • Since in (a) amplitude approaches zero • It’s an energy signal: • Since (b) is periodic, it’s a power signal: t        84422)( 0 20 1 22 2/ dtedtdttgE t 3 1 3 2 1 )( 1 )( 1 lim 32 1 1 1 1 1 21 1 22/ 2/ 2     t dttdttg T dttg T P T TT
  • 17. Worked example • Determine the power of the following signals )cos()(   tCtg             2/ 2/ 22 2/ 2/ 22 2/ 2/ 22/ 2/ 2 2 )]22cos(1[ 2 )(cos 1 )cos( 1 )( 1 lim T T T T T T T TT C dtt T C P dttC T dttC T dttg T P  
  • 18. Work these out • (b) • (c) )cos()cos()( 222111   tCtCtg 21   tj Detg 0 )(  
  • 19. More examples • Compute the signal energy & signal power for the following complex valued signal and indicate whether the signal is an energy or power signal tj Aetg 2 )( 
  • 20. More examples • Since g(t) is a periodic signal, it cannot be an energy signal. Therefore compute the signal power first. Signal Period: • Since the signal has a finite power, it is a power signal & has infinite energy (VERIFY!)  1 0 T   2/122 2 2 1 1 /11 1 /11 1 AtAdtAdtAeP t t tj t t t t       
  • 21. Deterministic & Random Signals • Deterministic signal: Physical description is known in either a mathematical or graphical form. eg: • Random signal: Signal known only in terms of probabilistic description such as mean value, mean square value rather than its complete mathematical or graphical description • eg: noise signal, message signal )1(tan)( 1   ttg
  • 22. Deterministic & Random Signals • Use matlab to plot a deterministic signal: • & random noise • To use matlab you must: • (a) declare the variables • (b) since it’s first time, use the plot command • (c) label the plot )1(tan)( 1   ttg
  • 23. Signal Operations • Time shifting: If a signal g(t) is time shifted by t1 units, it is denoted as f(t) =g(t-t1). • If t1>0, the shift is to the right (time delay) • If t1<0, the shift is to the left (time advance) • To demonstrate time shifting plot the signals: )1(tan)( )1(tan)( )(tan)( 1 1 1       ttY ttG ttg
  • 24. Time Shift matlab code • close all; % close graghs • clear all; % clear all the variables & functions from memory • t = -5:.3:5; % declear variable "t" • g = atan(t); • G = atan(t-1); • Y = atan(t+1); • plot(t,g); % plots the function "g" • hold; • plot(t,G,'r'); % plots “G” • plot(t,Y,'k'); • hold off; • grid on; • xlabel('t'); • ylabel('g(t),G(t) & Y(t)'); • title('time shifting demonstration'); • legend('g-original','G-delay','Y-advance');
  • 26. Signal Operations • Time Scaling: Compression or expansion of a signal • Signal f(t) is g(t) compressed by a factor of ‘a’ if f(t) = g(at), therefore f(t/a) = g(t) for a>1 • Similarly f(t) is g(t) expanded (slowed down) by a factor of ‘a’ if f(t) = g(t/a), therefore f(at) = g(t) for a<1 • To time-scale a signal by a factor of ‘a’, replace t with at. • If a > 1 the scaling is compressed & if a < 1, the scaling is expanded.
  • 27. Time Scaling demonstration • close all; • clear all; • t = -5:.3:5; • f = sawtooth(t); • G = sawtooth(2*t); • F = sawtooth(t/2); • plot(t,f); hold; • plot(t,G,'r'); • grid on; • xlabel('t'); • ylabel('f(t) & G(t)'); • title('time scaling demonstration'); • legend('f','G');
  • 29. Signal Operations • Time Reversal/Inversion/Folding: • To time reverse a signal, replace t with –t • If f(t) is a time resersal of g(t) then • f(t)=g(-t) • See the matlab code of g(-t)
  • 30. Time Reversal Demo-code • close all; clear all; • t = -5:.3:5; • g = atan(t); • G = atan(-t); • plot(t,g); % hold; • plot(t,G,'r'); % hold off; • grid on; • xlabel('t'); • ylabel('g(t) & G(t)'); • title('time Reversal Demonstration'); • legend('f-original', 'G-timeReversed');
  • 31.
  • 32. • Continous time signal: g(t) • Samples of continuous-time signal: g(nT) • Discrete-time signal: g(n)
  • 33. Samples of Continuous-time signal • close all; clear all; • t=-5:.5:5; • g=atan(t); • plot(t,g); • ylabel('g(t)'); • grid on; • title('Continuous-time signal Demonstration'); • figure • stem(t,g); • grid on; • xlabel('nT'); • ylabel('g(nT)'); • title('Samples of Continuous-time signal');
  • 34.
  • 35. Delta Function • Delta/Dirac/Unit Impulse function: Rectangular pulse with an infinitesimally small width & infinitely large height & an overall area of unity.      1)( 0)( dtt t   0t
  • 36. Multiplying a function by delta • Sampling/Sifting property of delta   )()(() )(*)0()()( TtTfTttf tfttf     )()()()()( )0()()0()()( TfdtTtTfdtTttf fdttfdtttf                
  • 37. Sampling/sifting property • The area under the product of a function with delta is equal to the value of that function at the instant where delta is located • Function f(t) must be continuous where the delta is located
  • 38. Unit Step Function       t d 1 0 )(  0 0   t t   t tud )()(  )(t dt du 
  • 39. Time Shifted, scaled, reversed step • Causal function: It’s zero before t = 0 otherwise is non-causal          )( )( )( a b tu a b tu batu 0 0   t t
  • 40. Correlation • Correlation coefficient cn: • Cross-correlation: • Autocorrelation: 11  nc     dttztg EE c zg n )()( 1     dttztggz )()()(      dttgtgg )()()( 
  • 41. Fourier Series • Fourier analysis considers signals to be constructed from a sum of complex exponentials with appropriate frequencies, amplitude & phases • Frequency components are the complex exponentials (sines & cosines) which, when added together, make up the signal • Orthogonality of signal set: ntxtxtx )(),...(),( 21
  • 42. Generalized Fourier Series nm nm        1 2211 )()( ...)(...)()()( n nn nn txctg txctxctxctg 21 ttt  dtxtg Edtx dtxtg c t t n n t t n t t n n       2 1 2 1 2 1 )( 1)( 2      n t t nm E dtxtx 0 )( 2 1 Fourier coefficients nm xx , Are othorgonal
  • 43. Exponential FS • Orthogonality: • Expon. FS       0 )( 0 )( 0 00 0 0 T dtedtee T tnmjtjn T tjm  nm nm          0 0 0 )( 1 )( 0 T tjn n n tjn n dtetg T D eDtg  
  • 44. Parseval’s Theorem • Energy of the sum of orthogonal signals is equal to the sum of their energies: • Parseval’s theorem: 1 2 1 2 1 2 1 2 1 2 1 222 111 2 1 2 1 )()( )....()( );()( EcdttxcdttxcE txctg txctg t t t t    1g n n ng g EcE EcEcE   2 2 2 21 2 1 ...
  • 45. Trigonometric Fourier Series • Trig. FS                  01 1 01 1 01 1 01 1 01 1 0 0 0 0 0 0 0 2 0 0 1 00 2sin)( 2 )( 1 2cos)( 2 2cos 2cos)( 2sin2cosag(t) Tt t n Tt t Tt tTt t Tt t n n n n tdtfntg T b dttg T a tdtfntg Ttdtfn tdtfntg a tfnbtfna     
  • 46. Fourier Transform & Spectra of Aperiodic Signals • The spectrum of a periodic signal is found from FS of a signal over one period • Since the FS is a periodic function of time, it is equal to an aperiodic signal only over the FS expansion interval, outside this interval it repeats • FS is used to produce the spectrum of the periodic extension but not the spectrum of aperiodic signal • To find the spectrum of an aperiodic signal we use FT
  • 47. Fourier Transform (FT) • To develop the FT, let’s start with the exponential FS representation of a periodic signal over the interval -T/2<t<T/2 • Let the interval increase until the entire time axis is encompassed • Since FT is developed from the FS the conditions for the existence follow from those of the Dirichlet conditions    dttg )(
  • 48.
  • 50. Fourier Transform Theorems • FT characteristics are expressed in the form of theorems • The theorems are useful in computing FT of complicated signals • Linearity: • If x(t) X(f) & y(t) Y(f) • Then • ax(t)+by(t) aX(f)+bY(f) • Integral in a linear operation   
  • 51. Fourier Transform Theorems • Time Shift • If Then Prove: 02 0 )()( )()( ftj efXttx fXtx    )(22)(2 0 )(22)(2 0 00 2 00 00 00 )(])([)]([ )()()]([ )()]([ tfjfjtfj tfjfjtfj ftj efXdexettx deexdexttx ttddttt dtettxttx                          
  • 52. Fourier Transform Theorems • Time Reversal )()( )()( fXtx fXtx  
  • 53. Fourier Transform Theorems • Time scale (Scale change) )/( 1 )( )()( afX a atx fXtx  
  • 54. Frequency Translation • If • Then • Modulation • If • then )()( )()( 0 2 0 ffXetx fXtx tfj    )( 2 1 )( 2 1 2cos)( )()( 000 ffXffXtftx fXtx   
  • 55. Inverse FT • Find the inverse FT of the delta function )(2 )(2 2 1 )( 2 1 )( 2 1 )]([ )]([)()( 0 0 0 00 1 12 0 0 0 0                            tj tj tj tjtj ftj e e e ede fGdfefGtg
  • 56. FT of cosine • Find the FT of the sinusoid (cosine) )()(][cos )](2)(2[ 2 1 )]( 2 1 [][cos )( 2 1 cos 000 000 0 00 00           t eet eet tjtj tjtj
  • 57. FT of rectangle • Find the FT of a rectangle of width tau                       /22/0)2/(sin )2/(sin)( )2/(sin)2/sin( 2/ )2/sin( 2 )( 2 )(2 )( 1 )( )()( 2/2/ 2/2/ 2/ 2/ nnc c t rect cX j ee ee j X dtedte t rectX jj jj tjtj              