SlideShare a Scribd company logo
1 of 29
Operations on continuous time
signals
Presented By
Mahruf Zaman Utso
044
Md. Iftekhar Ahmed Nasim
117
Shanawaz Ahmed
103
Overview:
Introduction
Operations
Conclusion
What is signal ?
-In electrical engineering, the fundamental quantity of
representing some information is called a signal. It does
not matter what the information is i-e: Analog or digital
information. In mathematics, a signal is a function that
conveys some information.
Types of signal:
1. Continuous time signal.
2. Discrete time signal.
Introduction:
Continuous time signal :
Operation on signal:
1. Shifting.
2. Reflection.
3. Scaling.
4. Symmetric or not.
5. Even part of the signal.
6. Odd part of the signal.
Consider a signal :
Graphical Expression of the signal:
𝒙 𝒕 =
𝒕 + πŸ‘ , βˆ’πŸ‘ ≀ 𝒕 ≀ βˆ’πŸ
𝟏 , βˆ’πŸ < 𝒕 ≀ βˆ’πŸ
𝒕 + 𝟐 , βˆ’πŸ < 𝒕 ≀ 𝟎
βˆ’πŸ‘π’• + 𝟐 , 𝟎 < 𝒕 ≀ 𝟏
βˆ’πŸ , 𝟏 < 𝒕 ≀ 𝟐
𝒕 βˆ’ πŸ‘ , 𝟐 < 𝒕 ≀ πŸ‘
𝟎, π’π’•π’‰π’†π’“π’˜π’Šπ’”π’†
-4 -3 -2 -1 0 1 2 3 4
-4
-3
-2
-1
0
1
2
3
4
x(t)
y(t)
t=-6:0.001:6;
x=zeros(size(t));
t1= t>=-3 & t<=-2;
x(t1)=t(t1)+3;
t2= t>-2 & t<=-1;
x(t2) = 1;
t3 = t>-1 & t<=0;
x(t3) = t(t3)+2;
t4 = t>0 & t<=1;
x(t4) = -3*t(t4)+2;
t5 = t>1 & t<=2;
x(t5) = -1;
t6 = t>2 & t<=3;
x(t6) = t(t6)- 3;
plot(t,x);
xlim([-4 4]);
ylim([-4 4]);
grid on;
Matlab Source code:
Shifting operation:
x (t-t0) represent a time-shifted version of x(t).
If t0>0 then the signal is delayed by t0 second.
If t0 <0 then the signal represent the advanced
replica of x (t).
Shifting operation:
𝒙 𝒕 + 𝟐 =
𝒕 + πŸ“ , βˆ’πŸ“ ≀ 𝒕 ≀ βˆ’πŸ’
𝟏 , βˆ’πŸ’ < 𝒕 ≀ βˆ’πŸ‘
𝒕 + πŸ’ , βˆ’πŸ‘ < 𝒕 ≀ βˆ’πŸ
βˆ’πŸ‘π’• βˆ’ πŸ’ βˆ’ 𝟐 < 𝒕 ≀ βˆ’πŸ
βˆ’πŸ , βˆ’πŸ < 𝒕 ≀ 𝟎
𝒕 βˆ’ 𝟏 , 𝟎 < 𝒕 ≀ 𝟏
𝟎, π’π’•π’‰π’†π’“π’˜π’Šπ’”π’†
𝒙 𝒕 =
𝒕 + πŸ‘ , βˆ’πŸ‘ ≀ 𝒕 ≀ βˆ’πŸ
𝟏 , βˆ’πŸ < 𝒕 ≀ βˆ’πŸ
𝒕 + 𝟐 , βˆ’πŸ < 𝒕 ≀ 𝟎
βˆ’πŸ‘π’• + 𝟐 , 𝟎 < 𝒕 ≀ 𝟏
βˆ’πŸ , 𝟏 < 𝒕 ≀ 𝟐
𝒕 βˆ’ πŸ‘ , 𝟐 < 𝒕 ≀ πŸ‘
𝟎, π’π’•π’‰π’†π’“π’˜π’Šπ’”π’†
Shifting operation:
-4 -3 -2 -1 0 1 2 3 4
-4
-3
-2
-1
0
1
2
3
4
x(t)
y(t)
-6 -5 -4 -3 -2 -1 0 1 2
-4
-3
-2
-1
0
1
2
3
4
x(t)
y(t)
Matlab Source Code:
t=-6:0.001:6;
x=zeros(size(t));
t1= t>=-5 & t<=-4;
x(t1)=t(t1)+5;
t2= t>-4 & t<=-3;
x(t2) = 1;
t3 = t>-3 & t<=-2;
x(t3) = t(t3)+4;
t4 = t>-2 & t<=-1;
x(t4) = -3*t(t4)-4;
t5 = t>-1 & t<=0;
x(t5) = -1;
t6 = t>0 & t<=1;
x(t6) = t(t6)- 1;
plot(t,x);
xlim([-6 2]);
ylim([-4 4]);
grid on;
Scaling operation:
x (Θ t) is the scaled version of x(t). If |Θ |>1 then x (Θ t) is the
compressed version. If |Θ |<1 then x (Θ t) is the expended signal.
𝒙 𝒕 =
𝒕 + πŸ‘ , βˆ’πŸ‘ ≀ 𝒕 ≀ βˆ’πŸ
𝟏 , βˆ’πŸ < 𝒕 ≀ βˆ’πŸ
𝒕 + 𝟐 , βˆ’πŸ < 𝒕 ≀ 𝟎
βˆ’πŸ‘π’• + 𝟐 , 𝟎 < 𝒕 ≀ 𝟏
βˆ’πŸ , 𝟏 < 𝒕 ≀ 𝟐
𝒕 βˆ’ πŸ‘ , 𝟐 < 𝒕 ≀ πŸ‘
𝟎, π’π’•π’‰π’†π’“π’˜π’Šπ’”π’†
𝒙 πŸπ’• =
πŸπ’• + πŸ‘ , βˆ’πŸ. πŸ“ ≀ 𝒕 ≀ βˆ’πŸ
𝟏 , βˆ’πŸ < 𝒕 ≀ βˆ’πŸŽ. πŸ“
πŸπ’• + 𝟐 , βˆ’πŸŽ. πŸ“ < 𝒕 ≀ 𝟎
βˆ’πŸ”π’• + 𝟐 , 𝟎 < 𝒕 ≀ 𝟎. πŸ“
βˆ’πŸ , 𝟎. πŸ“ < 𝒕 ≀ 𝟏
πŸπ’• βˆ’ πŸ‘ , 𝟏 < 𝒕 ≀ 𝟏. πŸ“
𝟎, π’π’•π’‰π’†π’“π’˜π’Šπ’”π’†
Scaling operation:
-4 -3 -2 -1 0 1 2 3 4
-4
-3
-2
-1
0
1
2
3
4
x(t)
y(t)
Matlab Source Code:
t=-6:0.001:6;
x=zeros(size(t));
t1= t>=-1.5 & t<=-1;
x(t1)=2*t(t1)+3;
t2= t>-1 & t<=-0.5;
x(t2) = 1;
t3 = t>-0.5 & t<=0;
x(t3) = 2*t(t3)+2;
t4 = t>0 & t<=0.5;
x(t4) = -6*t(t4)+2;
t5 = t>0.5 & t<=1;
x(t5) = -1;
t6 = t>1 & t<=1.5;
x(t6) = 2*t(t6)-3;
plot(t,x);
xlim([-4 4]);
ylim([-4 4]);
grid on;
Reflection operation:
x(-t) is the reflected version of x(t). It flips
the signal vertically
𝒙 𝒕 =
𝒕 + πŸ‘ , βˆ’πŸ‘ ≀ 𝒕 ≀ βˆ’πŸ
𝟏 , βˆ’πŸ < 𝒕 ≀ βˆ’πŸ
𝒕 + 𝟐 , βˆ’πŸ < 𝒕 ≀ 𝟎
βˆ’πŸ‘π’• + 𝟐 , 𝟎 < 𝒕 ≀ 𝟏
βˆ’πŸ , 𝟏 < 𝒕 ≀ 𝟐
𝒕 βˆ’ πŸ‘ , 𝟐 < 𝒕 ≀ πŸ‘
𝟎, π’π’•π’‰π’†π’“π’˜π’Šπ’”π’†
𝒙 βˆ’π’• =
βˆ’π’• βˆ’ πŸ‘ , βˆ’πŸ‘ ≀ 𝒕 ≀ βˆ’πŸ
βˆ’πŸ , βˆ’πŸ < 𝒕 ≀ βˆ’πŸ
πŸ‘π’• + 𝟐 , βˆ’πŸ < 𝒕 ≀ 𝟎
βˆ’π’• + 𝟐 , 𝟎 < 𝒕 ≀ 𝟏
𝟏 , 𝟏 < 𝒕 ≀ 𝟐
βˆ’π’• + πŸ‘ , 𝟐 < 𝒕 ≀ πŸ‘
𝟎, π’π’•π’‰π’†π’“π’˜π’Šπ’”π’†
Reflection operation:
-4 -3 -2 -1 0 1 2 3 4
-4
-3
-2
-1
0
1
2
3
4
x(t)
y(t)
-4 -3 -2 -1 0 1 2 3 4
-4
-3
-2
-1
0
1
2
3
4
x(t)
y(t)
Matlab Source Code:
t=-6:0.001:6;
x=zeros(size(t));
t1= t>=-3 & t<=-2;
x(t1)=-t(t1)-3;
t2= t>-2 & t<=-1;
x(t2) = -1;
t3 = t>-1 & t<=0;
x(t3) = 3*t(t3)+2;
t4 = t>0 & t<=1;
x(t4) = -t(t4)+2;
t5 = t>1 & t<=2;
x(t5) = 1;
t6 = t>2 & t<=3;
x(t6) = -t(t6)+ 3;
plot(t,x);
xlim([-4 4]);
ylim([-4 4]);
grid on;
A signal x(t) is even symmetric if x(t) = x(-t).
A signal x(t) is odd symmetric if x(t) = -x(-t)
𝒙 𝒕 =
𝒕 + πŸ‘ , βˆ’πŸ‘ ≀ 𝒕 ≀ βˆ’πŸ
𝟏 , βˆ’πŸ < 𝒕 ≀ βˆ’πŸ
𝒕 + 𝟐 , βˆ’πŸ < 𝒕 ≀ 𝟎
βˆ’πŸ‘π’• + 𝟐 , 𝟎 < 𝒕 ≀ 𝟏
βˆ’πŸ , 𝟏 < 𝒕 ≀ 𝟐
𝒕 βˆ’ πŸ‘ , 𝟐 < 𝒕 ≀ πŸ‘
𝟎, π’π’•π’‰π’†π’“π’˜π’Šπ’”π’†
π‘₯ βˆ’π‘‘ =
βˆ’π‘‘ βˆ’ 3 , βˆ’3 ≀ 𝑑 ≀ βˆ’2
βˆ’1 , βˆ’2 < 𝑑 ≀ βˆ’1
3𝑑 + 2 , βˆ’1 < 𝑑 ≀ 0
βˆ’π‘‘ + 2 , 0 < 𝑑 ≀ 1
1 , 1 < 𝑑 ≀ 2
βˆ’π‘‘ + 3 , 2 < 𝑑 ≀ 3
0, π‘œπ‘‘β„Žπ‘’π‘Ÿπ‘€π‘–π‘ π‘’
Symmetric Signal:
Symmetric Signal:
Here, x(-t) β‰  x(t) . So, the signal is not even symmetric
-4 -3 -2 -1 0 1 2 3 4
-4
-3
-2
-1
0
1
2
3
4
x(t)
y(t)
-4 -3 -2 -1 0 1 2 3 4
-4
-3
-2
-1
0
1
2
3
4
x(t)
y(t)
Symmetric Signal:
Here, x(-t)β‰  -x(t).So, the signal is not odd symmetric.
-4 -3 -2 -1 0 1 2 3 4
-4
-3
-2
-1
0
1
2
3
4
x(t)
y(t)
Mathematical Expression:
𝑿 𝒆(𝒕) =
2𝑑 + 2 , βˆ’1 ≀ 𝑑 ≀ 0
βˆ’2𝑑 + 2 , 0 < 𝑑 ≀ 1
0, π‘œπ‘‘β„Žπ‘’π‘Ÿπ‘€π‘–π‘ π‘’
Even Part:
For even part xe(t) =[x(t)+x(-t)]/2
Even part:
For even part xe(t) =[x(t)+x(-t)]/2
-4 -3 -2 -1 0 1 2 3 4
-4
-3
-2
-1
0
1
2
3
4
x(t)
y(t)
Matlab Source Code:
t=-6:0.001:6;
x=zeros(size(t));
t1= t>=-1 & t<=0;
x(t1)=2*t(t1)+2;
t2= t>0 & t<=1;
x(t2) = -2*t(t2)+2;
plot(t,x);
xlim([-4 4]);
ylim([-4 4]);
grid on;
Odd Part:
For odd part xo(t) =[x(t)-x(-t)]/2
Mathematical Expression:
𝑿 𝒐(𝒕) =
𝑑 + 3 , βˆ’3 ≀ 𝑑 ≀ βˆ’2
1 , βˆ’2 < 𝑑 ≀ βˆ’1
βˆ’π‘‘ , βˆ’1 < 𝑑 ≀ 1
βˆ’1 , 1 < 𝑑 ≀ 2
𝑑 βˆ’ 3 , 2 < 𝑑 ≀ 3
0, π‘œπ‘‘β„Žπ‘’π‘Ÿπ‘€π‘–π‘ π‘’
Odd Part:
For odd part xo(t) =[x(t)-x(-t)]/2
-4 -3 -2 -1 0 1 2 3 4
-4
-3
-2
-1
0
1
2
3
4
x(t)
y(t)
Matlab Source Code:
t=-6:0.001:6;
x=zeros(size(t));
t1= t>=-3 & t<=-2;
x(t1)=t(t1)+3;
t2= t>-2 & t<=-1;
x(t2) = 1;
t3 = t>-1 & t<=1;
x(t3) = -t(t3);
t4 = t>1 & t<=2;
x(t4) = -1;
t5 = t>2 & t<=3;
x(t5) = t(t5)- 3;
plot(t,x);
xlim([-4 4]);
ylim([-4 4]);
grid on;
Any Question or
Suggestions
?
Thank You

More Related Content

What's hot

Digital Signal Processing[ECEG-3171]-Ch1_L03
Digital Signal Processing[ECEG-3171]-Ch1_L03Digital Signal Processing[ECEG-3171]-Ch1_L03
Digital Signal Processing[ECEG-3171]-Ch1_L03Rediet Moges
Β 
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
Β 
signal and system Lecture 3
signal and system Lecture 3signal and system Lecture 3
signal and system Lecture 3iqbal ahmad
Β 
2. classification of signals
2. classification of signals 2. classification of signals
2. classification of signals MdFazleRabbi18
Β 
Dsp U Lec04 Discrete Time Signals & Systems
Dsp U   Lec04 Discrete Time Signals & SystemsDsp U   Lec04 Discrete Time Signals & Systems
Dsp U Lec04 Discrete Time Signals & Systemstaha25
Β 
signal & system inverse z-transform
signal & system inverse z-transformsignal & system inverse z-transform
signal & system inverse z-transformmihir jain
Β 
Digital Signal Processing Tutorial:Chapt 1 signal and systems
Digital Signal Processing Tutorial:Chapt 1 signal and systemsDigital Signal Processing Tutorial:Chapt 1 signal and systems
Digital Signal Processing Tutorial:Chapt 1 signal and systemsChandrashekhar Padole
Β 
Signals & Systems PPT
Signals & Systems PPTSignals & Systems PPT
Signals & Systems PPTJay Baria
Β 
Digital Signal Processing[ECEG-3171]-Ch1_L07
Digital Signal Processing[ECEG-3171]-Ch1_L07Digital Signal Processing[ECEG-3171]-Ch1_L07
Digital Signal Processing[ECEG-3171]-Ch1_L07Rediet Moges
Β 
system properties
system propertiessystem properties
system propertiestejaspatel1998
Β 
Sampling theorem
Sampling theoremSampling theorem
Sampling theoremShanu Bhuvana
Β 
Signal classification of signal
Signal classification of signalSignal classification of signal
Signal classification of signal001Abhishek1
Β 
Chapter3 - Fourier Series Representation of Periodic Signals
Chapter3 - Fourier Series Representation of Periodic SignalsChapter3 - Fourier Series Representation of Periodic Signals
Chapter3 - Fourier Series Representation of Periodic SignalsAttaporn Ninsuwan
Β 
Signals and classification
Signals and classificationSignals and classification
Signals and classificationSuraj Mishra
Β 
Chapter5 - The Discrete-Time Fourier Transform
Chapter5 - The Discrete-Time Fourier TransformChapter5 - The Discrete-Time Fourier Transform
Chapter5 - The Discrete-Time Fourier TransformAttaporn Ninsuwan
Β 
Signals & systems
Signals & systems Signals & systems
Signals & systems SathyaVigneshR
Β 
Overview of sampling
Overview of samplingOverview of sampling
Overview of samplingSagar Kumar
Β 
Chapter 2 signals and spectra,
Chapter 2   signals and spectra,Chapter 2   signals and spectra,
Chapter 2 signals and spectra,nahrain university
Β 
DSP_2018_FOEHU - Lec 03 - Discrete-Time Signals and Systems
DSP_2018_FOEHU - Lec 03 - Discrete-Time Signals and SystemsDSP_2018_FOEHU - Lec 03 - Discrete-Time Signals and Systems
DSP_2018_FOEHU - Lec 03 - Discrete-Time Signals and SystemsAmr E. Mohamed
Β 

What's hot (20)

Digital Signal Processing[ECEG-3171]-Ch1_L03
Digital Signal Processing[ECEG-3171]-Ch1_L03Digital Signal Processing[ECEG-3171]-Ch1_L03
Digital Signal Processing[ECEG-3171]-Ch1_L03
Β 
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
Β 
signal and system Lecture 3
signal and system Lecture 3signal and system Lecture 3
signal and system Lecture 3
Β 
2. classification of signals
2. classification of signals 2. classification of signals
2. classification of signals
Β 
Dsp U Lec04 Discrete Time Signals & Systems
Dsp U   Lec04 Discrete Time Signals & SystemsDsp U   Lec04 Discrete Time Signals & Systems
Dsp U Lec04 Discrete Time Signals & Systems
Β 
signal & system inverse z-transform
signal & system inverse z-transformsignal & system inverse z-transform
signal & system inverse z-transform
Β 
Solved problems
Solved problemsSolved problems
Solved problems
Β 
Digital Signal Processing Tutorial:Chapt 1 signal and systems
Digital Signal Processing Tutorial:Chapt 1 signal and systemsDigital Signal Processing Tutorial:Chapt 1 signal and systems
Digital Signal Processing Tutorial:Chapt 1 signal and systems
Β 
Signals & Systems PPT
Signals & Systems PPTSignals & Systems PPT
Signals & Systems PPT
Β 
Digital Signal Processing[ECEG-3171]-Ch1_L07
Digital Signal Processing[ECEG-3171]-Ch1_L07Digital Signal Processing[ECEG-3171]-Ch1_L07
Digital Signal Processing[ECEG-3171]-Ch1_L07
Β 
system properties
system propertiessystem properties
system properties
Β 
Sampling theorem
Sampling theoremSampling theorem
Sampling theorem
Β 
Signal classification of signal
Signal classification of signalSignal classification of signal
Signal classification of signal
Β 
Chapter3 - Fourier Series Representation of Periodic Signals
Chapter3 - Fourier Series Representation of Periodic SignalsChapter3 - Fourier Series Representation of Periodic Signals
Chapter3 - Fourier Series Representation of Periodic Signals
Β 
Signals and classification
Signals and classificationSignals and classification
Signals and classification
Β 
Chapter5 - The Discrete-Time Fourier Transform
Chapter5 - The Discrete-Time Fourier TransformChapter5 - The Discrete-Time Fourier Transform
Chapter5 - The Discrete-Time Fourier Transform
Β 
Signals & systems
Signals & systems Signals & systems
Signals & systems
Β 
Overview of sampling
Overview of samplingOverview of sampling
Overview of sampling
Β 
Chapter 2 signals and spectra,
Chapter 2   signals and spectra,Chapter 2   signals and spectra,
Chapter 2 signals and spectra,
Β 
DSP_2018_FOEHU - Lec 03 - Discrete-Time Signals and Systems
DSP_2018_FOEHU - Lec 03 - Discrete-Time Signals and SystemsDSP_2018_FOEHU - Lec 03 - Discrete-Time Signals and Systems
DSP_2018_FOEHU - Lec 03 - Discrete-Time Signals and Systems
Β 

Similar to Operations on Continuous Time Signals

Contemporary communication systems 1st edition mesiya solutions manual
Contemporary communication systems 1st edition mesiya solutions manualContemporary communication systems 1st edition mesiya solutions manual
Contemporary communication systems 1st edition mesiya solutions manualto2001
Β 
LINEAR SYSTEMS
LINEAR SYSTEMSLINEAR SYSTEMS
LINEAR SYSTEMSJazzieJao1
Β 
Unit 1 Operation on signals
Unit 1  Operation on signalsUnit 1  Operation on signals
Unit 1 Operation on signalsDr.SHANTHI K.G
Β 
Chapter 2
Chapter 2Chapter 2
Chapter 2wafaa_A7
Β 
Chapter 2
Chapter 2Chapter 2
Chapter 2wafaa_A7
Β 
OPERATIONS ON SIGNALS
OPERATIONS ON SIGNALSOPERATIONS ON SIGNALS
OPERATIONS ON SIGNALSvishalgohel12195
Β 
Signals and Systems.pptx
Signals and Systems.pptxSignals and Systems.pptx
Signals and Systems.pptxVairaPrakash2
Β 
Signals and Systems.pptx
Signals and Systems.pptxSignals and Systems.pptx
Signals and Systems.pptxVairaPrakash2
Β 
Ct signal operations
Ct signal operationsCt signal operations
Ct signal operationsmihir jain
Β 
SIGNAL OPERATIONS
SIGNAL OPERATIONSSIGNAL OPERATIONS
SIGNAL OPERATIONSmihir jain
Β 
MSE280s Chapter1_Signals_and_Systems.pdf
MSE280s Chapter1_Signals_and_Systems.pdfMSE280s Chapter1_Signals_and_Systems.pdf
MSE280s Chapter1_Signals_and_Systems.pdfTranThanhNam8
Β 
ssppt-170414031953.pptx
ssppt-170414031953.pptxssppt-170414031953.pptx
ssppt-170414031953.pptxAsifRahaman16
Β 
Unit-1 Classification of Signals
Unit-1 Classification of SignalsUnit-1 Classification of Signals
Unit-1 Classification of SignalsDr.SHANTHI K.G
Β 
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
Β 
Fourier Analysis Review for engineering.
Fourier Analysis Review for engineering.Fourier Analysis Review for engineering.
Fourier Analysis Review for engineering.AbdelRahmanMohamedNe
Β 
Digital signal processing on arm new
Digital signal processing on arm newDigital signal processing on arm new
Digital signal processing on arm newIsrael Gbati
Β 
Es400 fall 2012_lecuture_2_transformation_of_continuous_time_signal.pptx
Es400 fall 2012_lecuture_2_transformation_of_continuous_time_signal.pptxEs400 fall 2012_lecuture_2_transformation_of_continuous_time_signal.pptx
Es400 fall 2012_lecuture_2_transformation_of_continuous_time_signal.pptxumavijay
Β 
Informe laboratorio nΒ°1
Informe laboratorio nΒ°1Informe laboratorio nΒ°1
Informe laboratorio nΒ°1luisescobedo38
Β 
Randomized algorithms ver 1.0
Randomized algorithms ver 1.0Randomized algorithms ver 1.0
Randomized algorithms ver 1.0Dr. C.V. Suresh Babu
Β 

Similar to Operations on Continuous Time Signals (20)

Contemporary communication systems 1st edition mesiya solutions manual
Contemporary communication systems 1st edition mesiya solutions manualContemporary communication systems 1st edition mesiya solutions manual
Contemporary communication systems 1st edition mesiya solutions manual
Β 
LINEAR SYSTEMS
LINEAR SYSTEMSLINEAR SYSTEMS
LINEAR SYSTEMS
Β 
Unit 1 Operation on signals
Unit 1  Operation on signalsUnit 1  Operation on signals
Unit 1 Operation on signals
Β 
Chapter 2
Chapter 2Chapter 2
Chapter 2
Β 
Chapter 2
Chapter 2Chapter 2
Chapter 2
Β 
OPERATIONS ON SIGNALS
OPERATIONS ON SIGNALSOPERATIONS ON SIGNALS
OPERATIONS ON SIGNALS
Β 
Signals and Systems.pptx
Signals and Systems.pptxSignals and Systems.pptx
Signals and Systems.pptx
Β 
Signals and Systems.pptx
Signals and Systems.pptxSignals and Systems.pptx
Signals and Systems.pptx
Β 
Ct signal operations
Ct signal operationsCt signal operations
Ct signal operations
Β 
SIGNAL OPERATIONS
SIGNAL OPERATIONSSIGNAL OPERATIONS
SIGNAL OPERATIONS
Β 
MSE280s Chapter1_Signals_and_Systems.pdf
MSE280s Chapter1_Signals_and_Systems.pdfMSE280s Chapter1_Signals_and_Systems.pdf
MSE280s Chapter1_Signals_and_Systems.pdf
Β 
ssppt-170414031953.pptx
ssppt-170414031953.pptxssppt-170414031953.pptx
ssppt-170414031953.pptx
Β 
Unit-1 Classification of Signals
Unit-1 Classification of SignalsUnit-1 Classification of Signals
Unit-1 Classification of Signals
Β 
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
Β 
Fourier Analysis Review for engineering.
Fourier Analysis Review for engineering.Fourier Analysis Review for engineering.
Fourier Analysis Review for engineering.
Β 
Digital signal processing on arm new
Digital signal processing on arm newDigital signal processing on arm new
Digital signal processing on arm new
Β 
Es400 fall 2012_lecuture_2_transformation_of_continuous_time_signal.pptx
Es400 fall 2012_lecuture_2_transformation_of_continuous_time_signal.pptxEs400 fall 2012_lecuture_2_transformation_of_continuous_time_signal.pptx
Es400 fall 2012_lecuture_2_transformation_of_continuous_time_signal.pptx
Β 
Informe laboratorio nΒ°1
Informe laboratorio nΒ°1Informe laboratorio nΒ°1
Informe laboratorio nΒ°1
Β 
Randomized algorithms ver 1.0
Randomized algorithms ver 1.0Randomized algorithms ver 1.0
Randomized algorithms ver 1.0
Β 
Convolution
ConvolutionConvolution
Convolution
Β 

Recently uploaded

Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
Β 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
Β 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
Β 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
Β 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
Β 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
Β 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
Β 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
Β 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
Β 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
Β 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
Β 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
Β 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
Β 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
Β 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
Β 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEslot gacor bisa pakai pulsa
Β 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
Β 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoΓ£o Esperancinha
Β 

Recently uploaded (20)

Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
Β 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
Β 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Β 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
Β 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
Β 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
Β 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
Β 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
Β 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
Β 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
Β 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
Β 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
Β 
β˜… CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
β˜… CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCRβ˜… CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
β˜… CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
Β 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
Β 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
Β 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
Β 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
Β 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
Β 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
Β 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Β 

Operations on Continuous Time Signals

  • 2. Presented By Mahruf Zaman Utso 044 Md. Iftekhar Ahmed Nasim 117 Shanawaz Ahmed 103
  • 4. What is signal ? -In electrical engineering, the fundamental quantity of representing some information is called a signal. It does not matter what the information is i-e: Analog or digital information. In mathematics, a signal is a function that conveys some information. Types of signal: 1. Continuous time signal. 2. Discrete time signal. Introduction:
  • 6. Operation on signal: 1. Shifting. 2. Reflection. 3. Scaling. 4. Symmetric or not. 5. Even part of the signal. 6. Odd part of the signal.
  • 7. Consider a signal : Graphical Expression of the signal: 𝒙 𝒕 = 𝒕 + πŸ‘ , βˆ’πŸ‘ ≀ 𝒕 ≀ βˆ’πŸ 𝟏 , βˆ’πŸ < 𝒕 ≀ βˆ’πŸ 𝒕 + 𝟐 , βˆ’πŸ < 𝒕 ≀ 𝟎 βˆ’πŸ‘π’• + 𝟐 , 𝟎 < 𝒕 ≀ 𝟏 βˆ’πŸ , 𝟏 < 𝒕 ≀ 𝟐 𝒕 βˆ’ πŸ‘ , 𝟐 < 𝒕 ≀ πŸ‘ 𝟎, π’π’•π’‰π’†π’“π’˜π’Šπ’”π’† -4 -3 -2 -1 0 1 2 3 4 -4 -3 -2 -1 0 1 2 3 4 x(t) y(t)
  • 8. t=-6:0.001:6; x=zeros(size(t)); t1= t>=-3 & t<=-2; x(t1)=t(t1)+3; t2= t>-2 & t<=-1; x(t2) = 1; t3 = t>-1 & t<=0; x(t3) = t(t3)+2; t4 = t>0 & t<=1; x(t4) = -3*t(t4)+2; t5 = t>1 & t<=2; x(t5) = -1; t6 = t>2 & t<=3; x(t6) = t(t6)- 3; plot(t,x); xlim([-4 4]); ylim([-4 4]); grid on; Matlab Source code:
  • 9. Shifting operation: x (t-t0) represent a time-shifted version of x(t). If t0>0 then the signal is delayed by t0 second. If t0 <0 then the signal represent the advanced replica of x (t).
  • 10. Shifting operation: 𝒙 𝒕 + 𝟐 = 𝒕 + πŸ“ , βˆ’πŸ“ ≀ 𝒕 ≀ βˆ’πŸ’ 𝟏 , βˆ’πŸ’ < 𝒕 ≀ βˆ’πŸ‘ 𝒕 + πŸ’ , βˆ’πŸ‘ < 𝒕 ≀ βˆ’πŸ βˆ’πŸ‘π’• βˆ’ πŸ’ βˆ’ 𝟐 < 𝒕 ≀ βˆ’πŸ βˆ’πŸ , βˆ’πŸ < 𝒕 ≀ 𝟎 𝒕 βˆ’ 𝟏 , 𝟎 < 𝒕 ≀ 𝟏 𝟎, π’π’•π’‰π’†π’“π’˜π’Šπ’”π’† 𝒙 𝒕 = 𝒕 + πŸ‘ , βˆ’πŸ‘ ≀ 𝒕 ≀ βˆ’πŸ 𝟏 , βˆ’πŸ < 𝒕 ≀ βˆ’πŸ 𝒕 + 𝟐 , βˆ’πŸ < 𝒕 ≀ 𝟎 βˆ’πŸ‘π’• + 𝟐 , 𝟎 < 𝒕 ≀ 𝟏 βˆ’πŸ , 𝟏 < 𝒕 ≀ 𝟐 𝒕 βˆ’ πŸ‘ , 𝟐 < 𝒕 ≀ πŸ‘ 𝟎, π’π’•π’‰π’†π’“π’˜π’Šπ’”π’†
  • 11. Shifting operation: -4 -3 -2 -1 0 1 2 3 4 -4 -3 -2 -1 0 1 2 3 4 x(t) y(t) -6 -5 -4 -3 -2 -1 0 1 2 -4 -3 -2 -1 0 1 2 3 4 x(t) y(t)
  • 12. Matlab Source Code: t=-6:0.001:6; x=zeros(size(t)); t1= t>=-5 & t<=-4; x(t1)=t(t1)+5; t2= t>-4 & t<=-3; x(t2) = 1; t3 = t>-3 & t<=-2; x(t3) = t(t3)+4; t4 = t>-2 & t<=-1; x(t4) = -3*t(t4)-4; t5 = t>-1 & t<=0; x(t5) = -1; t6 = t>0 & t<=1; x(t6) = t(t6)- 1; plot(t,x); xlim([-6 2]); ylim([-4 4]); grid on;
  • 13. Scaling operation: x (Θ t) is the scaled version of x(t). If |Θ |>1 then x (Θ t) is the compressed version. If |Θ |<1 then x (Θ t) is the expended signal. 𝒙 𝒕 = 𝒕 + πŸ‘ , βˆ’πŸ‘ ≀ 𝒕 ≀ βˆ’πŸ 𝟏 , βˆ’πŸ < 𝒕 ≀ βˆ’πŸ 𝒕 + 𝟐 , βˆ’πŸ < 𝒕 ≀ 𝟎 βˆ’πŸ‘π’• + 𝟐 , 𝟎 < 𝒕 ≀ 𝟏 βˆ’πŸ , 𝟏 < 𝒕 ≀ 𝟐 𝒕 βˆ’ πŸ‘ , 𝟐 < 𝒕 ≀ πŸ‘ 𝟎, π’π’•π’‰π’†π’“π’˜π’Šπ’”π’† 𝒙 πŸπ’• = πŸπ’• + πŸ‘ , βˆ’πŸ. πŸ“ ≀ 𝒕 ≀ βˆ’πŸ 𝟏 , βˆ’πŸ < 𝒕 ≀ βˆ’πŸŽ. πŸ“ πŸπ’• + 𝟐 , βˆ’πŸŽ. πŸ“ < 𝒕 ≀ 𝟎 βˆ’πŸ”π’• + 𝟐 , 𝟎 < 𝒕 ≀ 𝟎. πŸ“ βˆ’πŸ , 𝟎. πŸ“ < 𝒕 ≀ 𝟏 πŸπ’• βˆ’ πŸ‘ , 𝟏 < 𝒕 ≀ 𝟏. πŸ“ 𝟎, π’π’•π’‰π’†π’“π’˜π’Šπ’”π’†
  • 14. Scaling operation: -4 -3 -2 -1 0 1 2 3 4 -4 -3 -2 -1 0 1 2 3 4 x(t) y(t)
  • 15. Matlab Source Code: t=-6:0.001:6; x=zeros(size(t)); t1= t>=-1.5 & t<=-1; x(t1)=2*t(t1)+3; t2= t>-1 & t<=-0.5; x(t2) = 1; t3 = t>-0.5 & t<=0; x(t3) = 2*t(t3)+2; t4 = t>0 & t<=0.5; x(t4) = -6*t(t4)+2; t5 = t>0.5 & t<=1; x(t5) = -1; t6 = t>1 & t<=1.5; x(t6) = 2*t(t6)-3; plot(t,x); xlim([-4 4]); ylim([-4 4]); grid on;
  • 16. Reflection operation: x(-t) is the reflected version of x(t). It flips the signal vertically 𝒙 𝒕 = 𝒕 + πŸ‘ , βˆ’πŸ‘ ≀ 𝒕 ≀ βˆ’πŸ 𝟏 , βˆ’πŸ < 𝒕 ≀ βˆ’πŸ 𝒕 + 𝟐 , βˆ’πŸ < 𝒕 ≀ 𝟎 βˆ’πŸ‘π’• + 𝟐 , 𝟎 < 𝒕 ≀ 𝟏 βˆ’πŸ , 𝟏 < 𝒕 ≀ 𝟐 𝒕 βˆ’ πŸ‘ , 𝟐 < 𝒕 ≀ πŸ‘ 𝟎, π’π’•π’‰π’†π’“π’˜π’Šπ’”π’† 𝒙 βˆ’π’• = βˆ’π’• βˆ’ πŸ‘ , βˆ’πŸ‘ ≀ 𝒕 ≀ βˆ’πŸ βˆ’πŸ , βˆ’πŸ < 𝒕 ≀ βˆ’πŸ πŸ‘π’• + 𝟐 , βˆ’πŸ < 𝒕 ≀ 𝟎 βˆ’π’• + 𝟐 , 𝟎 < 𝒕 ≀ 𝟏 𝟏 , 𝟏 < 𝒕 ≀ 𝟐 βˆ’π’• + πŸ‘ , 𝟐 < 𝒕 ≀ πŸ‘ 𝟎, π’π’•π’‰π’†π’“π’˜π’Šπ’”π’†
  • 17. Reflection operation: -4 -3 -2 -1 0 1 2 3 4 -4 -3 -2 -1 0 1 2 3 4 x(t) y(t) -4 -3 -2 -1 0 1 2 3 4 -4 -3 -2 -1 0 1 2 3 4 x(t) y(t)
  • 18. Matlab Source Code: t=-6:0.001:6; x=zeros(size(t)); t1= t>=-3 & t<=-2; x(t1)=-t(t1)-3; t2= t>-2 & t<=-1; x(t2) = -1; t3 = t>-1 & t<=0; x(t3) = 3*t(t3)+2; t4 = t>0 & t<=1; x(t4) = -t(t4)+2; t5 = t>1 & t<=2; x(t5) = 1; t6 = t>2 & t<=3; x(t6) = -t(t6)+ 3; plot(t,x); xlim([-4 4]); ylim([-4 4]); grid on;
  • 19. A signal x(t) is even symmetric if x(t) = x(-t). A signal x(t) is odd symmetric if x(t) = -x(-t) 𝒙 𝒕 = 𝒕 + πŸ‘ , βˆ’πŸ‘ ≀ 𝒕 ≀ βˆ’πŸ 𝟏 , βˆ’πŸ < 𝒕 ≀ βˆ’πŸ 𝒕 + 𝟐 , βˆ’πŸ < 𝒕 ≀ 𝟎 βˆ’πŸ‘π’• + 𝟐 , 𝟎 < 𝒕 ≀ 𝟏 βˆ’πŸ , 𝟏 < 𝒕 ≀ 𝟐 𝒕 βˆ’ πŸ‘ , 𝟐 < 𝒕 ≀ πŸ‘ 𝟎, π’π’•π’‰π’†π’“π’˜π’Šπ’”π’† π‘₯ βˆ’π‘‘ = βˆ’π‘‘ βˆ’ 3 , βˆ’3 ≀ 𝑑 ≀ βˆ’2 βˆ’1 , βˆ’2 < 𝑑 ≀ βˆ’1 3𝑑 + 2 , βˆ’1 < 𝑑 ≀ 0 βˆ’π‘‘ + 2 , 0 < 𝑑 ≀ 1 1 , 1 < 𝑑 ≀ 2 βˆ’π‘‘ + 3 , 2 < 𝑑 ≀ 3 0, π‘œπ‘‘β„Žπ‘’π‘Ÿπ‘€π‘–π‘ π‘’ Symmetric Signal:
  • 20. Symmetric Signal: Here, x(-t) β‰  x(t) . So, the signal is not even symmetric -4 -3 -2 -1 0 1 2 3 4 -4 -3 -2 -1 0 1 2 3 4 x(t) y(t) -4 -3 -2 -1 0 1 2 3 4 -4 -3 -2 -1 0 1 2 3 4 x(t) y(t)
  • 21. Symmetric Signal: Here, x(-t)β‰  -x(t).So, the signal is not odd symmetric. -4 -3 -2 -1 0 1 2 3 4 -4 -3 -2 -1 0 1 2 3 4 x(t) y(t)
  • 22. Mathematical Expression: 𝑿 𝒆(𝒕) = 2𝑑 + 2 , βˆ’1 ≀ 𝑑 ≀ 0 βˆ’2𝑑 + 2 , 0 < 𝑑 ≀ 1 0, π‘œπ‘‘β„Žπ‘’π‘Ÿπ‘€π‘–π‘ π‘’ Even Part: For even part xe(t) =[x(t)+x(-t)]/2
  • 23. Even part: For even part xe(t) =[x(t)+x(-t)]/2 -4 -3 -2 -1 0 1 2 3 4 -4 -3 -2 -1 0 1 2 3 4 x(t) y(t)
  • 24. Matlab Source Code: t=-6:0.001:6; x=zeros(size(t)); t1= t>=-1 & t<=0; x(t1)=2*t(t1)+2; t2= t>0 & t<=1; x(t2) = -2*t(t2)+2; plot(t,x); xlim([-4 4]); ylim([-4 4]); grid on;
  • 25. Odd Part: For odd part xo(t) =[x(t)-x(-t)]/2 Mathematical Expression: 𝑿 𝒐(𝒕) = 𝑑 + 3 , βˆ’3 ≀ 𝑑 ≀ βˆ’2 1 , βˆ’2 < 𝑑 ≀ βˆ’1 βˆ’π‘‘ , βˆ’1 < 𝑑 ≀ 1 βˆ’1 , 1 < 𝑑 ≀ 2 𝑑 βˆ’ 3 , 2 < 𝑑 ≀ 3 0, π‘œπ‘‘β„Žπ‘’π‘Ÿπ‘€π‘–π‘ π‘’
  • 26. Odd Part: For odd part xo(t) =[x(t)-x(-t)]/2 -4 -3 -2 -1 0 1 2 3 4 -4 -3 -2 -1 0 1 2 3 4 x(t) y(t)
  • 27. Matlab Source Code: t=-6:0.001:6; x=zeros(size(t)); t1= t>=-3 & t<=-2; x(t1)=t(t1)+3; t2= t>-2 & t<=-1; x(t2) = 1; t3 = t>-1 & t<=1; x(t3) = -t(t3); t4 = t>1 & t<=2; x(t4) = -1; t5 = t>2 & t<=3; x(t5) = t(t5)- 3; plot(t,x); xlim([-4 4]); ylim([-4 4]); grid on;