Discrete-time Signals and Systems We begin with the concepts of signals and systems in discrete time. A number of important types of signals and their.

Slides:



Advertisements
Similar presentations
Chapter 8: The Discrete Fourier Transform
Advertisements

MM3FC Mathematical Modeling 3 LECTURE 3
EECS 20 Chapter 5 Part 21 Linear Infinite State Systems Last time we Looked at systems with an infinite number of states (Reals N ) Examined property of.
Lecture 4: Linear Systems and Convolution
Lecture 19: Discrete-Time Transfer Functions
Introduction to Systems What are signals and what are systems The system description Classification of systems Deriving the system model – Continuous systems.
MM3FC Mathematical Modeling 3 LECTURE 2 Times Weeks 7,8 & 9. Lectures : Mon,Tues,Wed 10-11am, Rm.1439 Tutorials : Thurs, 10am, Rm. ULT. Clinics : Fri,
Discrete-Time Signals Week 2. Continuous-Time Versus Discrete-Time Signals Continuous-time signal: a signal defined by a function of a continuous-time.
EECS 20 Chapter 9 Part 21 Convolution, Impulse Response, Filters Last time we Revisited the impulse function and impulse response Defined the impulse (Dirac.
Computational Geophysics and Data Analysis
Finite Impuse Response Filters. Filters A filter is a system that processes a signal in some desired fashion. –A continuous-time signal or continuous.
Digital Signals and Systems
Discrete-Time Fourier Series
The sampling of continuous-time signals is an important topic It is required by many important technologies such as: Digital Communication Systems ( Wireless.
Discrete-Time and System (A Review)
1 Chapter 8 The Discrete Fourier Transform 2 Introduction  In Chapters 2 and 3 we discussed the representation of sequences and LTI systems in terms.
Fourier Series Summary (From Salivahanan et al, 2002)
Digital Signal Processing
1 Fourier Representation of Signals and LTI Systems. CHAPTER 3 EKT 232.
Digital Signal Processing – Chapter 10
Module 2 SPECTRAL ANALYSIS OF COMMUNICATION SIGNAL.
DISCRETE-TIME SINUSOIDAL SIGNALS
The Discrete Fourier Transform 主講人:虞台文. Content Introduction Representation of Periodic Sequences – DFS (Discrete Fourier Series) Properties of DFS The.
Zhongguo Liu_Biomedical Engineering_Shandong Univ. Chapter 8 The Discrete Fourier Transform Zhongguo Liu Biomedical Engineering School of Control.
Fourier Analysis of Discrete-Time Systems
1 Fourier Representation of Signals and LTI Systems. CHAPTER 3 EKT 232.
Analog-To-Digital convertor Sampler Quantization Coding.
1 Lecture 1: February 20, 2007 Topic: 1. Discrete-Time Signals and Systems.
Digital Signal Processing Chapter 3 Discrete transforms.
Fourier Analysis of Discrete Time Signals
LIST OF EXPERIMENTS USING TMS320C5X Study of various addressing modes of DSP using simple programming examples Sampling of input signal and display Implementation.
Chapter 5 Finite-Length Discrete Transform
Hossein Sameti Department of Computer Engineering Sharif University of Technology.
Fourier Analysis of Signals and Systems
CHAPTER 2 Discrete-Time Signals and Systems in the Time-Domain
1 Time-Domain Representations of LTI Systems CHAPTER 2.11 Characteristics of Systems Described by Differential and Difference Equations and Difference.
Discrete-time Random Signals
Technological Educational Institute Of Crete Department Of Applied Informatics and Multimedia Neural Networks Laboratory Slide 1 DISCRETE SIGNALS AND SYSTEMS.
Signals and Systems Analysis NET 351 Instructor: Dr. Amer El-Khairy د. عامر الخيري.
Chapter 8 Systems of Linear Equations in Two Variables Section 8.3.
Today's lecture Continuous and discrete-time signals The sequence
Analysis of Linear Time Invariant (LTI) Systems
Prof. Brian L. Evans Dept. of Electrical and Computer Engineering The University of Texas at Austin Lecture 3
Finite Impuse Response Filters. Filters A filter is a system that processes a signal in some desired fashion. –A continuous-time signal or continuous.
Dr. Michael Nasief Digital Signal Processing Lec 7 1.
بسم الله الرحمن الرحيم Digital Signal Processing Lecture 2 Analog to Digital Conversion University of Khartoum Department of Electrical and Electronic.
EENG 420 Digital Signal Processing Lecture 2.
بسم الله الرحمن الرحيم Lecture (12) Dr. Iman Abuel Maaly The Discrete Fourier Transform Dr. Iman Abuel Maaly University of Khartoum Department of Electrical.
1 Chapter 8 The Discrete Fourier Transform (cont.)
Discrete Time Signal Processing Chu-Song Chen (陳祝嵩) Institute of Information Science Academia Sinica 中央研究院 資訊科學研究所.
Digital Signal Processing
Digital Signal Processing
Lecture 11 FIR Filtering Intro
CEN352 Dr. Nassim Ammour King Saud University
SIGNALS PROCESSING AND ANALYSIS
Signal Processing First
Lecture 12 Linearity & Time-Invariance Convolution
Chapter 2 Simultaneous Linear Equations (cont.)
Everything You Ever Wanted to Know About Filters*
لجنة الهندسة الكهربائية
Lecture 4: Discrete-Time Systems
Signals and Systems Networks and Communication Department Chapter (1)
2 Linear Time-Invariant Systems --Analysis of Signals and Systems in time-domain An arbitrary signal can be represented as the supposition of scaled.
1 Z Transform Dr.P.Prakasam Professor/ECE 9/18/2018SS/Dr.PP/ZT.
Lecture 2: Signals Concepts & Properties
Chapter 3 Sampling.
Concept of frequency in Discrete Signals & Introduction to LTI Systems
Lecture 4: Linear Systems and Convolution
CE Digital Signal Processing Fall Discrete Fourier Transform (DFT)
Presentation transcript:

Discrete-time Signals and Systems We begin with the concepts of signals and systems in discrete time. A number of important types of signals and their operations are introduced. Linear and shift-invariant systems are discussed mostly because they are easier to analyze and implement. The convolution and the difference equation representations are given special attention because of their importance in digital signal processing and in MATLAB. The emphasis in this chapter is on the representations and implementation of signals and systems using MATLAB.

1.DISCRETE-TIME SIGNALS Signals are broadly classified into analog and discrete signals. An analog signal will be denoted by xa(t), in which the variable t can represent any physical quantity, but we will assume that it represents time in seconds. A discrete signal will be denoted by x(n), in which the variable n is integervalued and represents discrete instances in time. Therefore it is also called a discrete- time signal, which is a number sequence and will be denoted by one of the following notations: x(n) = {x(n)} = {..., x(−1), x(0), x(1),...} ↑ where the up-arrow indicates the sample at n = 0.

In MATLAB we can represent a finite-duration sequence by a row vector of appropriate values. However, such a vector does not have any information about sample position n. Therefore a correct representation of x(n) would require two vectors, one each for x and n. For example, a sequence x(n) = {2, 1,−1,0, 1, 4, 3, 7} can be represented in MATLAB by ↑ >> n=[-3,-2,-1,0,1,2,3,4]; x=[2,1,-1,0,1,4,3,7]; Generally, we will use the x-vector representation alone when the sample position information is not required or when such information is trivial (e.g. when the sequence begins at n = 0). An arbitrary infinite- duration sequence cannot be represented in MATLAB due to the finite memory limitations.

1.1.TYPES OF SEQUENCES We use several elementary sequences in digital signal processing for analysis purposes. Their definitions and MATLAB representations follow.

1.2.OPERATIONS ON SEQUENCES

1.3.DISCRETE-TIME SINUSOIDS

1.4 SOME USEFUL RESULTS

2.DISCRETE SYSTEMS 2.1.Linear Systems

3.Convolution

3.1. MATLAB IMPLEMENTATION

3.2 SEQUENCE CORRELATIONS REVISITED

sdsdsd

4.DIFFERENCE EQUATIONS

4.1 MATLAB IMPLEMENTATION

4.2 ZERO-INPUT AND ZERO-STATE RESPONSES

4.3 DIGITAL FILTERS