Introduction to Signal Analysis Parts I and II

Size: px
Start display at page:

Download "Introduction to Signal Analysis Parts I and II"

Transcription

1 41614 Dynamics of Machinery 23/03/2005 IFS Introduction to Signal Analysis Parts I and II Contents 1 Topics of the Lecture 11/03/2005 (Part I) 2 2 Fourier Analysis Fourier Series, Integral and Complex Form 3 3 Fourier Analysis Example with a Square Wave Function 8 4 Fourier Analysis Example with a Triangular Wave Function 11 5 Discrete Form of Fourier Transform 15 6 Discrete Fourier Analysis Examples 18 7 Matlab Routines 13 Examples with 5 Different Signals 20 8 Analyzers and Signal Processing 24 9 Topics of the Lecture 18/03/2005 (Part II) Impulse Response Response to an Arbitrary Input Response to Random Input Estimators H1, H2 and Coherence Function Matlab Routine FRF-general.m Extracting the Modal Parameters 53 1

2 41614 Dynamics of Machinery 18/03/2005 IFS Introduction to Signal Analysis Part I 1 1 Topics of the Lecture 11/03/2005 (Part I) Fourier Analysis Fourier Series Fourier Integral Complex Form of Fourier Transform Examples: Square Wave and Triangular Wave Discrete Form of Fourier Transform Example: Sinus with 16 points Frequency Response Analyzers Digital Signal Processing Aliasing Anti-Aliasing Filtering Leakage Windowing Averaging Overlapping 1 References Bendat, J. S. (1993) Engineering Applications of Correlation and Spectral Analysis, John Wiley & Sons, Inc., New York. Carlson, G. E. (1998) Signal and Linear System Analysis with Matlab, John Wiley & Sons, Inc., New York. Randall, R. B. (1987) Frequency Analysis, Brüel & Kjaer, Naerum, Denmark. Ewins, D. J. (1984) Modal Testing: theory and practice, Letchworth: Research Studies Press Ltd., England. 2

3 2 Fourier Analysis Fourier Series, Integral and Complex Form 3

4 4

5 5

6 6

7 7

8 3 Fourier Analysis Example with a Square Wave Function 8

9 9

10 10

11 4 Fourier Analysis Example with a Triangular Wave Function 11

12 12

13 13

14 14

15 5 Discrete Form of Fourier Transform 15

16 16

17 17

18 6 Discrete Fourier Analysis Examples EXAMPLE 1: function x(t) = cos4πt It is important to see in table 1 that the spectral coefficients a k and b k provides the information about the frequency of the function, i.e 4π rad/s or 2 Hz. Moreover, all coefficients b k are zero. Analyzing equations (??) and (??) you can easily see that the spectral coefficients a k are related to the real part of X k or cos(k ω t) and b k to the imaginary part of X k or sin(k ω t). Obviously, all coefficients b k shall be zero. t k [s] x k f k [Hz] a k b k x(t) x r t r [s] 10 a k b k f k =ω k /2π [Hz] Table 1: Data of a digitalized cosine function x(t) = cos4πt composed of N = 16 points in the time domain, where T = 1 s, T = T/N = s, ω k = 2π/T = 2π [rad/s] = 1 [Hz], f k = k ω/2π = k 1 [Hz] (k = 0,1,2,...,(N 1)) and spectral coefficients X k = a k j b k. 18

19 EXAMPLE 2: function x(t) = sin4πt It is important to see in table 2 that the spectral coefficients a k and b k provides the information about the frequency of the function, i.e 4π rad/s or 2 Hz. Moreover, all coefficients a k are zero. Analyzing equations (??) and (??) you can easily see that the spectral coefficients a k are related to the real part of X k or cos(k ω t) and b k to the imaginary part of X k or sin(k ω t). Obviously, all coefficients a k shall be zero. t k [s] x k f k [Hz] a k b k x(t) x r t r [s] 10 a k b k f k =ω k /2π [Hz] Table 2: Data of a digitalized cosine function x(t) = cos4πt composed of N = 16 points in the time domain, where T = 1 s, T = T/N = s, ω k = 2π/T = 2π [rad/s] = 1 [Hz], f k = k ω/2π = k 1 [Hz] (k = 0,1,2,...,(N 1)) and spectral coefficients X k = a k j b k. 19

20 7 Matlab Routines 13 Examples with 5 Different Signals %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % MACHINERY DYNAMICS LECTURES (41614) % % IKS - DEPARTMENT OF CONTROL ENGINEERING DESIGN % % DTU - TECHNICAL UNIVERSITY OF DENMARK % % % % Copenhagen, February 20th, 2002 % % IFS % % % % LECTURE ABOUT SIGNAL ANALYSIS & SIGNAL PROCESSING % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% clear all close all % * SIGNAL WITH DIFFERENT FREQUENCIES % (1) a perfect sinus with f= 10 Hz with 2048 points % (2) a perfect sinus with f= 100 Hz with 2048 points % % * DECREASING THE RATE FREQUENCY -> ALIASING % (3) a perfect sinus f=100.0 Hz with 1024 points % (4) a perfect sinus f=100.0 Hz with 512 points % (5) a perfect sinus f=100.0 Hz with 256 points % (6) a perfect sinus f=100.0 Hz with 128 points % (7) a perfect sinus f=100.0 Hz with 64 points % % * LEAKAGE % (8) an incomplete sinus leak= 1.0 f=1.0 Hz with 128 points % (9) an incomplete sinus leak= 1.5 f=1.0 Hz with 128 points % % * TRANSIENT SIGNAL & WINDOWING % (10) xi=0.1 with a sinus f=100 Hz with 512 points % (11) xi=0.5 with a sinus f=100 Hz with 512 points % (12) xi=0.9 with a sinus f=100 Hz with 512 points % (13) xi=0.1 with a sinus f=100 Hz with 128 points (aliasing) % % * SIGNAL WITH MULTIPLE FREQUENCY COMPONENTS - 2 COMPONENTS % % * SIGNAL WITH MULTIPLE FREQUENCY COMPONENTS - 4 COMPONENTS % % * SIGNAL CONTAMINATED BY NOISE % % * STEP SIGNAL % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % * SIGNAL WITH DIFFERENT FREQUENCIES % (Case 1) n = 2048; % number of points in the range of time freq = 10.0; % [Hz] - frequency of the simulated signal xi = 0.0; % - damping factor leak = 1.0; % - leakage factor % (Case 2) % n = 2048; % number of points in the range of time % freq =100.0; % [Hz] - frequency of the simulated signal 20

21 % xi = 0.0; % - damping factor % leak = 1.0; % - leakage factor % * DECREASING THE RATE FREQUENCY -> ALIASING % (Case 3) % n = 1024; % number of points in the range of time % freq =100.0; % [Hz] - frequency of the simulated signal % xi = 0.0; % - damping factor % leak = 1.0; % - leakage factor % (Case 4) % n = 512; % number of points in the range of time % freq =100.0; % [Hz] - frequency of the simulated signal % xi = 0.0; % - damping factor % leak = 1.0; % - leakage factor % (Case 5) % n = 256; % number of points in the range of time % freq =100.0; % [Hz] - frequency of the simulated signal % xi = 0.0; % - damping factor % leak = 1.0; % - leakage factor % (Case 6) % n = 128; % number of points in the range of time % freq =100.0; % [Hz] - frequency of the simulated signal % xi = 0.0; % - damping factor % leak = 1.0; % - leakage factor % (Case 7) % n = 64; % number of points in the range of time % freq =100.0; % [Hz] - frequency of the simulated signal % xi = 0.0; % - damping factor % leak = 1.0; % - leakage factor % * LEAKAGE % (Case 8) % n = 128; % number of points in the range of time % freq = 1.0; % [Hz] - frequency of the simulated signal % xi = 0.0; % - damping factor % leak = 1.0; % - leakage factor % (Case 9) % n = 128; % number of points in the range of time % freq = 1.0; % [Hz] - frequency of the simulated signal % xi = 0.0; % - damping factor % leak = 1.5; % - leakage factor % * TRANSIENT SIGNAL & WINDOWING % (Case 10) % n = 1024; % number of points in the range of time % freq =100.0; % [Hz] - frequency of the simulated signal % xi = 0.1; % - damping factor 21

22 % leak = 1.0; % - leakage factor % (Case 11) % n = 1024; % number of points in the range of time % freq =100.0; % [Hz] - frequency of the simulated signal % xi = 0.5; % - damping factor % leak = 1.0; % - leakage factor % (Case 12) % n = 1024; % number of points in the range of time % freq =100.0; % [Hz] - frequency of the simulated signal % xi = 0.9; % - damping factor % leak = 1.0; % - leakage factor % (Case 13) % n = 512 % number of points in the range of time % freq =100.0 % [Hz] - frequency of the simulated signal % xi = 0.1; % - damping factor % leak = 1.0; % - leakage factor % (Case 14) % n = 512; % number of points in the range of time % freq =10.0; % [Hz] - frequency of the simulated signal % xi = 0.0; % - damping factor % leak = 1.0; % - leakage factor tmax=1.0; % [s] - time in seconds xo=1.0e-0; % [m] - signal amplitude freqa = freq*sqrt(1-xi^2); % [Hz] - damped frequency fmax=n/(2*tmax); % [Hz] - max. frequency for i=1:n, t(i)=(i-1)/n*tmax; f(i)=(i-1)/tmax; %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % FIVE DIFFERENT TYPES OF SIGNAL %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % (1) SINUS SIGNAL WITH 1 FREQUENCY COMPONENT x(i)=xo*exp(-xi*freqa*t(i))*sin(2*pi*freqa*t(i)*leak); % % (2) SINUS SIGNAL WITH 2 FREQUENCY COMPONENT % x(i)=xo*exp(-xi*freqa*t(i))*sin(2*pi*freqa*t(i)*leak) +... % xo*exp(-xi*freqa*t(i))*sin( 4*2*pi*freqa*t(i)*leak); % % (3) SINUS SIGNAL WITH 4 FREQUENCY COMPONENT % x(i)=xo*exp(-xi*freqa*t(i))*sin(0*2*pi*freqa*t(i)*leak) +... % xo/2*exp(-xi*freqa*t(i))*sin(2*2*pi*freqa*t(i)*leak) +... % xo/4*exp(-xi*freqa*t(i))*sin(4*2*pi*freqa*t(i)*leak) +... % xo/6*exp(-xi*freqa*t(i))*sin(6*2*pi*freqa*t(i)*leak); % % (4) SINUS SIGNAL + NOISE % const = 0.5; % ruido(i) = randn; 22

23 % x(i)=xo*exp(-xi*freqa*t(i))*sin(2*pi*freqa*t(i)*leak)+const*ruido(i); % % (5) STEP WAVE % x(i)=xo*exp(-xi*freqa*t(i))*sign(sin(2*pi*freqa*t(i)*leak)); end y=fft(x); figure(1) title( Signal Analysis in Time and Frequency Domain, FontSize,18) subplot(3,1,1), plot(t,x, r- ) title( (a) Time Domain - (b) and (c) Frequency Domain with N and N/2 points, FontSize,18) xlabel( time [s], FontSize,18) ylabel( (a), FontSize,18) grid subplot(3,1,2), plot(f(1:n),abs(y(1:n)), r- ) xlabel( frequency [Hz], FontSize,18) ylabel( (b), FontSize,18) grid subplot(3,1,3), plot(f(1:n/2),abs(y(1:n/2)), r- ) xlabel( frequency [Hz], FontSize,18) ylabel( (c), FontSize,18) grid 23

24 8 Analyzers and Signal Processing 24

25 25

26 26

27 27

28 28

29 29

ECE 301 Fall 2011 Division 1 Homework 10 Solutions. { 1, for 0.5 t 0.5 x(t) = 0, for 0.5 < t 1

ECE 301 Fall 2011 Division 1 Homework 10 Solutions. { 1, for 0.5 t 0.5 x(t) = 0, for 0.5 < t 1 ECE 3 Fall Division Homework Solutions Problem. Reconstruction of a continuous-time signal from its samples. Let x be a periodic continuous-time signal with period, such that {, for.5 t.5 x(t) =, for.5

More information

OSE801 Engineering System Identification. Lecture 05: Fourier Analysis

OSE801 Engineering System Identification. Lecture 05: Fourier Analysis OSE81 Engineering System Identification Lecture 5: Fourier Analysis What we will study in this lecture: A short introduction of Fourier analysis Sampling the data Applications Example 1 Fourier Analysis

More information

Frequency Resolution Effects on FRF Estimation: Cyclic Averaging vs. Large Block Size

Frequency Resolution Effects on FRF Estimation: Cyclic Averaging vs. Large Block Size Frequency Resolution Effects on FRF Estimation: Cyclic Averaging vs. Large Block Size Allyn W. Phillips, PhD Andrew. Zucker Randall J. Allemang, PhD Research Assistant Professor Research Assistant Professor

More information

w n = c k v n k (1.226) w n = c k v n k + d k w n k (1.227) Clearly non-recursive filters are a special case of recursive filters where M=0.

w n = c k v n k (1.226) w n = c k v n k + d k w n k (1.227) Clearly non-recursive filters are a special case of recursive filters where M=0. Random Data 79 1.13 Digital Filters There are two fundamental types of digital filters Non-recursive N w n = c k v n k (1.226) k= N and recursive N M w n = c k v n k + d k w n k (1.227) k= N k=1 Clearly

More information

Information and Communications Security: Encryption and Information Hiding

Information and Communications Security: Encryption and Information Hiding Short Course on Information and Communications Security: Encryption and Information Hiding Tuesday, 10 March Friday, 13 March, 2015 Lecture 5: Signal Analysis Contents The complex exponential The complex

More information

Assignment 4 Solutions Continuous-Time Fourier Transform

Assignment 4 Solutions Continuous-Time Fourier Transform Assignment 4 Solutions Continuous-Time Fourier Transform ECE 3 Signals and Systems II Version 1.01 Spring 006 1. Properties of complex numbers. Let c 1 α 1 + jβ 1 and c α + jβ be two complex numbers. a.

More information

Lecture 17: variance in a band = log(s xx (f)) df (2) If we want to plot something that is more directly representative of variance, we can try this:

Lecture 17: variance in a band = log(s xx (f)) df (2) If we want to plot something that is more directly representative of variance, we can try this: UCSD SIOC 221A: (Gille) 1 Lecture 17: Recap We ve now spent some time looking closely at coherence and how to assign uncertainties to coherence. Can we think about coherence in a different way? There are

More information

Digital Signal Processing: Signal Transforms

Digital Signal Processing: Signal Transforms Digital Signal Processing: Signal Transforms Aishy Amer, Mohammed Ghazal January 19, 1 Instructions: 1. This tutorial introduces frequency analysis in Matlab using the Fourier and z transforms.. More Matlab

More information

DYNAMICS OF MACHINES 41614

DYNAMICS OF MACHINES 41614 DYNAMICS OF MACHINES 464 PART I INTRODUCTION TO THE BASIC TOOLS OF MODELLING, SIMULATION, ANALYSIS & EXPERIMENTAL VALIDATION 6 x 4 Angular Velocity: rpm Mode: Nat. Freq.: 4.788 Hz 4 4 3 x 4 Signal (a)

More information

Problem Value

Problem Value GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL of ELECTRICAL & COMPUTER ENGINEERING FINAL EXAM DATE: 30-Apr-04 COURSE: ECE-2025 NAME: GT #: LAST, FIRST Recitation Section: Circle the date & time when your Recitation

More information

Summary of lecture 1. E x = E x =T. X T (e i!t ) which motivates us to define the energy spectrum Φ xx (!) = jx (i!)j 2 Z 1 Z =T. 2 d!

Summary of lecture 1. E x = E x =T. X T (e i!t ) which motivates us to define the energy spectrum Φ xx (!) = jx (i!)j 2 Z 1 Z =T. 2 d! Summary of lecture I Continuous time: FS X FS [n] for periodic signals, FT X (i!) for non-periodic signals. II Discrete time: DTFT X T (e i!t ) III Poisson s summation formula: describes the relationship

More information

(i) Represent continuous-time periodic signals using Fourier series

(i) Represent continuous-time periodic signals using Fourier series Fourier Series Chapter Intended Learning Outcomes: (i) Represent continuous-time periodic signals using Fourier series (ii) (iii) Understand the properties of Fourier series Understand the relationship

More information

Introduction to DSP Time Domain Representation of Signals and Systems

Introduction to DSP Time Domain Representation of Signals and Systems Introduction to DSP Time Domain Representation of Signals and Systems Dr. Waleed Al-Hanafy waleed alhanafy@yahoo.com Faculty of Electronic Engineering, Menoufia Univ., Egypt Digital Signal Processing (ECE407)

More information

Each of these functions represents a signal in terms of its spectral components in the frequency domain.

Each of these functions represents a signal in terms of its spectral components in the frequency domain. N INTRODUCTION TO SPECTRL FUNCTIONS Revision B By Tom Irvine Email: tomirvine@aol.com March 3, 000 INTRODUCTION This tutorial presents the Fourier transform. It also discusses the power spectral density

More information

EE482: Digital Signal Processing Applications

EE482: Digital Signal Processing Applications Professor Brendan Morris, SEB 3216, brendan.morris@unlv.edu EE482: Digital Signal Processing Applications Spring 2014 TTh 14:305:45 CBC C222 Lecture 8 Frequency Analysis 14/02/18 http://www.ee.unlv.edu/~b1morris/ee482/

More information

Solutions. Chapter 1. Problem 1.1. Solution. Simulate free response of damped harmonic oscillator

Solutions. Chapter 1. Problem 1.1. Solution. Simulate free response of damped harmonic oscillator Chapter Solutions Problem. Simulate free response of damped harmonic oscillator ẍ + ζẋ + x = for different values of damping ration ζ and initial conditions. Plot the response x(t) and ẋ(t) versus t and

More information

Solutions for examination in TSRT78 Digital Signal Processing,

Solutions for examination in TSRT78 Digital Signal Processing, Solutions for examination in TSRT78 Digital Signal Processing, 2014-04-14 1. s(t) is generated by s(t) = 1 w(t), 1 + 0.3q 1 Var(w(t)) = σ 2 w = 2. It is measured as y(t) = s(t) + n(t) where n(t) is white

More information

Solutions for examination in TSRT78 Digital Signal Processing,

Solutions for examination in TSRT78 Digital Signal Processing, Solutions for examination in TSRT78 Digital Signal Processing 212-12-2 1. (a) The forgetting factor balances the accuracy and the adaptation speed of the RLS algorithm. This as the forgetting factor controls

More information

QUIZ #2 SOLUTION Version A

QUIZ #2 SOLUTION Version A GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL of ELECTRICAL & COMPUTER ENGINEERING QUIZ #2 SOLUTION Version A DATE: 7-MAR-16 SOLUTION Version A COURSE: ECE 226A,B NAME: STUDENT #: LAST, FIRST 2 points 2 points

More information

E2.5 Signals & Linear Systems. Tutorial Sheet 1 Introduction to Signals & Systems (Lectures 1 & 2)

E2.5 Signals & Linear Systems. Tutorial Sheet 1 Introduction to Signals & Systems (Lectures 1 & 2) E.5 Signals & Linear Systems Tutorial Sheet 1 Introduction to Signals & Systems (Lectures 1 & ) 1. Sketch each of the following continuous-time signals, specify if the signal is periodic/non-periodic,

More information

Distortion Analysis T

Distortion Analysis T EE 435 Lecture 32 Spectral Performance Windowing Spectral Performance of Data Converters - Time Quantization - Amplitude Quantization Quantization Noise . Review from last lecture. Distortion Analysis

More information

System Modeling and Identification CHBE 702 Korea University Prof. Dae Ryook Yang

System Modeling and Identification CHBE 702 Korea University Prof. Dae Ryook Yang System Modeling and Identification CHBE 702 Korea University Prof. Dae Ryook Yang 1-1 Course Description Emphases Delivering concepts and Practice Programming Identification Methods using Matlab Class

More information

An Estimation of Error-Free Frequency Response Function from Impact Hammer Testing

An Estimation of Error-Free Frequency Response Function from Impact Hammer Testing 85 An Estimation of Error-Free Frequency Response Function from Impact Hammer Testing Se Jin AHN, Weui Bong JEONG and Wan Suk YOO The spectrum of impulse response signal from the impact hammer testing

More information

ECE 301 Fall 2010 Division 2 Homework 10 Solutions. { 1, if 2n t < 2n + 1, for any integer n, x(t) = 0, if 2n 1 t < 2n, for any integer n.

ECE 301 Fall 2010 Division 2 Homework 10 Solutions. { 1, if 2n t < 2n + 1, for any integer n, x(t) = 0, if 2n 1 t < 2n, for any integer n. ECE 3 Fall Division Homework Solutions Problem. Reconstruction of a continuous-time signal from its samples. Consider the following periodic signal, depicted below: {, if n t < n +, for any integer n,

More information

Core Concepts Review. Orthogonality of Complex Sinusoids Consider two (possibly non-harmonic) complex sinusoids

Core Concepts Review. Orthogonality of Complex Sinusoids Consider two (possibly non-harmonic) complex sinusoids Overview of Continuous-Time Fourier Transform Topics Definition Compare & contrast with Laplace transform Conditions for existence Relationship to LTI systems Examples Ideal lowpass filters Relationship

More information

CE 513: STATISTICAL METHODS

CE 513: STATISTICAL METHODS 28-8-217/CE 68 CE 513: STATISTICAL METHODS IN CIVIL ENGINEERING Lecture: Introduction to Fourier transforms Dr. Budhaditya Hazra Room: N-37 Department of Civil Engineering 1 Fourier Analysis Fourier Series

More information

Homework 1 Solutions

Homework 1 Solutions 18-9 Signals and Systems Profs. Byron Yu and Pulkit Grover Fall 18 Homework 1 Solutions Part One 1. (8 points) Consider the DT signal given by the algorithm: x[] = 1 x[1] = x[n] = x[n 1] x[n ] (a) Plot

More information

LAB 2: DTFT, DFT, and DFT Spectral Analysis Summer 2011

LAB 2: DTFT, DFT, and DFT Spectral Analysis Summer 2011 University of Illinois at Urbana-Champaign Department of Electrical and Computer Engineering ECE 311: Digital Signal Processing Lab Chandra Radhakrishnan Peter Kairouz LAB 2: DTFT, DFT, and DFT Spectral

More information

FOURIER TRANSFORM AND

FOURIER TRANSFORM AND Version: 11 THE DISCRETE TEX d: Oct. 23, 2013 FOURIER TRANSFORM AND THE FFT PREVIEW Classical numerical analysis techniques depend largely on polynomial approximation of functions for differentiation,

More information

Linear Systems. ! Textbook: Strum, Contemporary Linear Systems using MATLAB.

Linear Systems. ! Textbook: Strum, Contemporary Linear Systems using MATLAB. Linear Systems LS 1! Textbook: Strum, Contemporary Linear Systems using MATLAB.! Contents 1. Basic Concepts 2. Continuous Systems a. Laplace Transforms and Applications b. Frequency Response of Continuous

More information

Session 1 : Fundamental concepts

Session 1 : Fundamental concepts BRUFACE Vibrations and Acoustics MA1 Academic year 17-18 Cédric Dumoulin (cedumoul@ulb.ac.be) Arnaud Deraemaeker (aderaema@ulb.ac.be) Exercise 1 Session 1 : Fundamental concepts Consider the following

More information

Solutions. Chapter 5. Problem 5.1. Solution. Consider the driven, two-well Duffing s oscillator. which can be written in state variable form as

Solutions. Chapter 5. Problem 5.1. Solution. Consider the driven, two-well Duffing s oscillator. which can be written in state variable form as Chapter 5 Solutions Problem 5.1 Consider the driven, two-well Duffing s oscillator which can be written in state variable form as ẍ + ɛγẋ x + x 3 = ɛf cos(ωt) ẋ = v v = x x 3 + ɛ( γv + F cos(ωt)). In the

More information

Homework 4. May An LTI system has an input, x(t) and output y(t) related through the equation y(t) = t e (t t ) x(t 2)dt

Homework 4. May An LTI system has an input, x(t) and output y(t) related through the equation y(t) = t e (t t ) x(t 2)dt Homework 4 May 2017 1. An LTI system has an input, x(t) and output y(t) related through the equation y(t) = t e (t t ) x(t 2)dt Determine the impulse response of the system. Rewriting as y(t) = t e (t

More information

Lecture 4 - Spectral Estimation

Lecture 4 - Spectral Estimation Lecture 4 - Spectral Estimation The Discrete Fourier Transform The Discrete Fourier Transform (DFT) is the equivalent of the continuous Fourier Transform for signals known only at N instants separated

More information

Centre for Mathematical Sciences HT 2017 Mathematical Statistics

Centre for Mathematical Sciences HT 2017 Mathematical Statistics Lund University Stationary stochastic processes Centre for Mathematical Sciences HT 2017 Mathematical Statistics Computer exercise 3 in Stationary stochastic processes, HT 17. The purpose of this exercise

More information

FOURIER ANALYSIS using Python

FOURIER ANALYSIS using Python (version September 5) FOURIER ANALYSIS using Python his practical introduces the following: Fourier analysis of both periodic and non-periodic signals (Fourier series, Fourier transform, discrete Fourier

More information

Digital Signal Processing, Lecture 2 Frequency description continued, DFT

Digital Signal Processing, Lecture 2 Frequency description continued, DFT Outline cture 2 2 Digital Signal Processing, cture 2 Frequency description continued, DFT Thomas Schön Division of Automatic Control Department of Electrical Engineering Linköping i University it E-mail:

More information

OSE801 Engineering System Identification. Lecture 09: Computing Impulse and Frequency Response Functions

OSE801 Engineering System Identification. Lecture 09: Computing Impulse and Frequency Response Functions OSE801 Engineering System Identification Lecture 09: Computing Impulse and Frequency Response Functions 1 Extracting Impulse and Frequency Response Functions In the preceding sections, signal processing

More information

Solutions - Homework # 3

Solutions - Homework # 3 ECE-34: Signals and Systems Summer 23 PROBLEM One period of the DTFS coefficients is given by: X[] = (/3) 2, 8. Solutions - Homewor # 3 a) What is the fundamental period 'N' of the time-domain signal x[n]?

More information

Solutions to Problems in Chapter 4

Solutions to Problems in Chapter 4 Solutions to Problems in Chapter 4 Problems with Solutions Problem 4. Fourier Series of the Output Voltage of an Ideal Full-Wave Diode Bridge Rectifier he nonlinear circuit in Figure 4. is a full-wave

More information

Evaluating Fourier Transforms with MATLAB

Evaluating Fourier Transforms with MATLAB ECE 460 Introduction to Communication Systems MATLAB Tutorial #2 Evaluating Fourier Transforms with MATLAB In class we study the analytic approach for determining the Fourier transform of a continuous

More information

ELEN E4810: Digital Signal Processing Topic 11: Continuous Signals. 1. Sampling and Reconstruction 2. Quantization

ELEN E4810: Digital Signal Processing Topic 11: Continuous Signals. 1. Sampling and Reconstruction 2. Quantization ELEN E4810: Digital Signal Processing Topic 11: Continuous Signals 1. Sampling and Reconstruction 2. Quantization 1 1. Sampling & Reconstruction DSP must interact with an analog world: A to D D to A x(t)

More information

FROM ANALOGUE TO DIGITAL

FROM ANALOGUE TO DIGITAL SIGNALS AND SYSTEMS: PAPER 3C1 HANDOUT 7. Dr David Corrigan 1. Electronic and Electrical Engineering Dept. corrigad@tcd.ie www.mee.tcd.ie/ corrigad FROM ANALOGUE TO DIGITAL To digitize signals it is necessary

More information

Homework 6 Solutions

Homework 6 Solutions 8-290 Signals and Systems Profs. Byron Yu and Pulkit Grover Fall 208 Homework 6 Solutions. Part One. (2 points) Consider an LTI system with impulse response h(t) e αt u(t), (a) Compute the frequency response

More information

sinc function T=1 sec T=2 sec angle(f(w)) angle(f(w))

sinc function T=1 sec T=2 sec angle(f(w)) angle(f(w)) T=1 sec sinc function 3 angle(f(w)) T=2 sec angle(f(w)) 1 A quick script to plot mag & phase in MATLAB w=0:0.2:50; Real exponential func b=5; Fourier transform (filter) F=1.0./(b+j*w); subplot(211), plot(w,

More information

BME 50500: Image and Signal Processing in Biomedicine. Lecture 5: Correlation and Power-Spectrum CCNY

BME 50500: Image and Signal Processing in Biomedicine. Lecture 5: Correlation and Power-Spectrum CCNY 1 BME 50500: Image and Signal Processing in Biomedicine Lecture 5: Correlation and Power-Spectrum Lucas C. Parra Biomedical Engineering Department CCNY http://bme.ccny.cuny.edu/faculty/parra/teaching/signal-and-image/

More information

George Mason University Signals and Systems I Spring 2016

George Mason University Signals and Systems I Spring 2016 George Mason University Signals and Systems I Spring 206 Problem Set #6 Assigned: March, 206 Due Date: March 5, 206 Reading: This problem set is on Fourier series representations of periodic signals. The

More information

SEISMIC WAVE PROPAGATION. Lecture 2: Fourier Analysis

SEISMIC WAVE PROPAGATION. Lecture 2: Fourier Analysis SEISMIC WAVE PROPAGATION Lecture 2: Fourier Analysis Fourier Series & Fourier Transforms Fourier Series Review of trigonometric identities Analysing the square wave Fourier Transform Transforms of some

More information

Vibration Testing. an excitation source a device to measure the response a digital signal processor to analyze the system response

Vibration Testing. an excitation source a device to measure the response a digital signal processor to analyze the system response Vibration Testing For vibration testing, you need an excitation source a device to measure the response a digital signal processor to analyze the system response i) Excitation sources Typically either

More information

DFT and Matlab with some examples.

DFT and Matlab with some examples. DFT and Matlab with some examples 1 www.icrf.nl Fourier transform Fourier transform is defined as: X + jωt = x( t e dt ( ω ) ) with ω= 2 π f Rad/s And x(t) a signal in the time domain. www.icrf.nl 2 Fourier

More information

EE123 Digital Signal Processing

EE123 Digital Signal Processing EE123 Digital Signal Processing Lecture 1 Time-Dependent FT Announcements! Midterm: 2/22/216 Open everything... but cheat sheet recommended instead 1am-12pm How s the lab going? Frequency Analysis with

More information

Signals and Systems. Lecture 14 DR TANIA STATHAKI READER (ASSOCIATE PROFESSOR) IN SIGNAL PROCESSING IMPERIAL COLLEGE LONDON

Signals and Systems. Lecture 14 DR TANIA STATHAKI READER (ASSOCIATE PROFESSOR) IN SIGNAL PROCESSING IMPERIAL COLLEGE LONDON Signals and Systems Lecture 14 DR TAIA STATHAKI READER (ASSOCIATE PROFESSOR) I SIGAL PROCESSIG IMPERIAL COLLEGE LODO Introduction. Time sampling theorem resume. We wish to perform spectral analysis using

More information

Homework 9 Solutions

Homework 9 Solutions 8-290 Signals and Systems Profs. Byron Yu and Pulkit Grover Fall 207 Homework 9 Solutions Part One. (6 points) Compute the convolution of the following continuous-time aperiodic signals. (Hint: Use the

More information

PART 1. Review of DSP. f (t)e iωt dt. F(ω) = f (t) = 1 2π. F(ω)e iωt dω. f (t) F (ω) The Fourier Transform. Fourier Transform.

PART 1. Review of DSP. f (t)e iωt dt. F(ω) = f (t) = 1 2π. F(ω)e iωt dω. f (t) F (ω) The Fourier Transform. Fourier Transform. PART 1 Review of DSP Mauricio Sacchi University of Alberta, Edmonton, AB, Canada The Fourier Transform F() = f (t) = 1 2π f (t)e it dt F()e it d Fourier Transform Inverse Transform f (t) F () Part 1 Review

More information

TIME-DOMAIN OUTPUT ONLY MODAL PARAMETER EXTRACTION AND ITS APPLICATION

TIME-DOMAIN OUTPUT ONLY MODAL PARAMETER EXTRACTION AND ITS APPLICATION IME-DOMAIN OUPU ONLY MODAL PARAMEER EXRACION AND IS APPLICAION Hong Guan, University of California, San Diego, U.S.A. Vistasp M. Karbhari*, University of California, San Diego, U.S.A. Charles S. Sikorsky,

More information

Experimental Fourier Transforms

Experimental Fourier Transforms Chapter 5 Experimental Fourier Transforms 5.1 Sampling and Aliasing Given x(t), we observe only sampled data x s (t) = x(t)s(t; T s ) (Fig. 5.1), where s is called sampling or comb function and can be

More information

Problem Set 9 Solutions

Problem Set 9 Solutions Problem Set 9 Solutions EE23: Digital Signal Processing. From Figure below, we see that the DTFT of the windowed sequence approaches the actual DTFT as the window size increases. Gibb s phenomenon is absent

More information

E : Lecture 1 Introduction

E : Lecture 1 Introduction E85.2607: Lecture 1 Introduction 1 Administrivia 2 DSP review 3 Fun with Matlab E85.2607: Lecture 1 Introduction 2010-01-21 1 / 24 Course overview Advanced Digital Signal Theory Design, analysis, and implementation

More information

UNIVERSITY OF CINCINNATI

UNIVERSITY OF CINCINNATI UNIVERSITY OF CINCINNATI Date: 04/14/06 I, Suresh Babu Chennagowni, hereby submit this work as part of the requirements for the degree of: Master of Science in: Mechanical Engineering It is entitled: Study

More information

Discrete Time Fourier Transform (DTFT) Digital Signal Processing, 2011 Robi Polikar, Rowan University

Discrete Time Fourier Transform (DTFT) Digital Signal Processing, 2011 Robi Polikar, Rowan University Discrete Time Fourier Transform (DTFT) Digital Signal Processing, 2 Robi Polikar, Rowan University Sinusoids & Exponentials Signals Phasors Frequency Impulse, step, rectangular Characterization Power /

More information

Problem Value Score No/Wrong Rec

Problem Value Score No/Wrong Rec GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL of ELECTRICAL & COMPUTER ENGINEERING QUIZ #2 DATE: 14-Oct-11 COURSE: ECE-225 NAME: GT username: LAST, FIRST (ex: gpburdell3) 3 points 3 points 3 points Recitation

More information

Review: Continuous Fourier Transform

Review: Continuous Fourier Transform Review: Continuous Fourier Transform Review: convolution x t h t = x τ h(t τ)dτ Convolution in time domain Derivation Convolution Property Interchange the order of integrals Let Convolution Property By

More information

EE 16B Final, December 13, Name: SID #:

EE 16B Final, December 13, Name: SID #: EE 16B Final, December 13, 2016 Name: SID #: Important Instructions: Show your work. An answer without explanation is not acceptable and does not guarantee any credit. Only the front pages will be scanned

More information

VID3: Sampling and Quantization

VID3: Sampling and Quantization Video Transmission VID3: Sampling and Quantization By Prof. Gregory D. Durgin copyright 2009 all rights reserved Claude E. Shannon (1916-2001) Mathematician and Electrical Engineer Worked for Bell Labs

More information

TELECOMMUNICATIONS ENGINEERING

TELECOMMUNICATIONS ENGINEERING TELECOMMUNICATIONS ENGINEERING STATISTICS 9 LAB 5. STOCHASTIC PROCESSES Aim: Introduction to stochastic processes. Bernoulli Process Let be X(t) a Bernoulli stochastic process defined by: { + with probability

More information

SHOCK AND VIBRATION RESPONSE SPECTRA COURSE Unit 7A. Power Spectral Density Function

SHOCK AND VIBRATION RESPONSE SPECTRA COURSE Unit 7A. Power Spectral Density Function SHOCK AND VIBRATION RESPONSE SPECTRA COURSE Unit 7A. Power Spectral Density Function By Tom Irvine Introduction A Fourier transform by itself is a poor format for representing random vibration because

More information

Universiti Malaysia Perlis EKT430: DIGITAL SIGNAL PROCESSING LAB ASSIGNMENT 3: DISCRETE TIME SYSTEM IN TIME DOMAIN

Universiti Malaysia Perlis EKT430: DIGITAL SIGNAL PROCESSING LAB ASSIGNMENT 3: DISCRETE TIME SYSTEM IN TIME DOMAIN Universiti Malaysia Perlis EKT430: DIGITAL SIGNAL PROCESSING LAB ASSIGNMENT 3: DISCRETE TIME SYSTEM IN TIME DOMAIN Pusat Pengajian Kejuruteraan Komputer Dan Perhubungan Universiti Malaysia Perlis Discrete-Time

More information

Homework 6. April 11, H(s) = Y (s) X(s) = s 1. s 2 + 3s + 2

Homework 6. April 11, H(s) = Y (s) X(s) = s 1. s 2 + 3s + 2 Homework 6 April, 6 Problem Steady state of LTI systems The transfer function of an LTI system is H(s) = Y (s) X(s) = s s + 3s + If the input to this system is x(t) = + cos(t + π/4), < t

More information

PROJECT 1 DYNAMICS OF MACHINES 41514

PROJECT 1 DYNAMICS OF MACHINES 41514 PROJECT DYNAMICS OF MACHINES 454 Theoretical and Experimental Modal Analysis and Validation of Mathematical Models in Multibody Dynamics Ilmar Ferreira Santos, Professor Dr.-Ing., Dr.Techn., Livre-Docente

More information

Random signals II. ÚPGM FIT VUT Brno,

Random signals II. ÚPGM FIT VUT Brno, Random signals II. Jan Černocký ÚPGM FIT VUT Brno, cernocky@fit.vutbr.cz 1 Temporal estimate of autocorrelation coefficients for ergodic discrete-time random process. ˆR[k] = 1 N N 1 n=0 x[n]x[n + k],

More information

Tutorial Sheet #2 discrete vs. continuous functions, periodicity, sampling

Tutorial Sheet #2 discrete vs. continuous functions, periodicity, sampling 2.39 utorial Sheet #2 discrete vs. continuous functions, periodicity, sampling We will encounter two classes of signals in this class, continuous-signals and discrete-signals. he distinct mathematical

More information

Bayesian Analysis - A First Example

Bayesian Analysis - A First Example Bayesian Analysis - A First Example This script works through the example in Hoff (29), section 1.2.1 We are interested in a single parameter: θ, the fraction of individuals in a city population with with

More information

MATLAB/SIMULINK Programs for Flutter

MATLAB/SIMULINK Programs for Flutter H MATLAB/SIMULINK Programs for Flutter In this appix, some sample MATLAB programs are given for the calculation of the aeroelastic behaviour of a binary aeroelastic system, its response to control surface

More information

GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL of ELECTRICAL and COMPUTER ENGINEERING

GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL of ELECTRICAL and COMPUTER ENGINEERING GEORGIA INSIUE OF ECHNOLOGY SCHOOL of ELECRICAL and COMPUER ENGINEERING ECE 6250 Spring 207 Problem Set # his assignment is due at the beginning of class on Wednesday, January 25 Assigned: 6-Jan-7 Due

More information

Experimental Modal Analysis

Experimental Modal Analysis Copyright 2003 Brüel & Kjær Sound & Vibration Measurement A/S All Rights Reserved Experimental Modal Analysis Modal Analysis 1 m f(t) x(t) SDOF and MDOF Models c k Different Modal Analysis Techniques Exciting

More information

An Indicator for Separation of Structural and Harmonic Modes in Output-Only Modal Testing Brincker, Rune; Andersen, P.; Møller, N.

An Indicator for Separation of Structural and Harmonic Modes in Output-Only Modal Testing Brincker, Rune; Andersen, P.; Møller, N. Aalborg Universitet An Indicator for Separation of Structural and Harmonic Modes in Output-Only Modal Testing Brincker, Rune; Andersen, P.; Møller, N. Published in: Proceedings of the European COST F3

More information

L6: Short-time Fourier analysis and synthesis

L6: Short-time Fourier analysis and synthesis L6: Short-time Fourier analysis and synthesis Overview Analysis: Fourier-transform view Analysis: filtering view Synthesis: filter bank summation (FBS) method Synthesis: overlap-add (OLA) method STFT magnitude

More information

Vibration Testing. Typically either instrumented hammers or shakers are used.

Vibration Testing. Typically either instrumented hammers or shakers are used. Vibration Testing Vibration Testing Equipment For vibration testing, you need an excitation source a device to measure the response a digital signal processor to analyze the system response Excitation

More information

EEO 401 Digital Signal Processing Prof. Mark Fowler

EEO 401 Digital Signal Processing Prof. Mark Fowler EEO 4 Digital Signal Processing Pro. Mark Fowler ote Set # Using the DFT or Spectral Analysis o Signals Reading Assignment: Sect. 7.4 o Proakis & Manolakis Ch. 6 o Porat s Book /9 Goal o Practical Spectral

More information

2.161 Signal Processing: Continuous and Discrete

2.161 Signal Processing: Continuous and Discrete MIT OpenCourseWare http://ocw.mit.edu.6 Signal Processing: Continuous and Discrete Fall 8 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. MASSACHUSETTS

More information

Identification Techniques for Operational Modal Analysis An Overview and Practical Experiences

Identification Techniques for Operational Modal Analysis An Overview and Practical Experiences Identification Techniques for Operational Modal Analysis An Overview and Practical Experiences Henrik Herlufsen, Svend Gade, Nis Møller Brüel & Kjær Sound and Vibration Measurements A/S, Skodsborgvej 307,

More information

Sound & Vibration Magazine March, Fundamentals of the Discrete Fourier Transform

Sound & Vibration Magazine March, Fundamentals of the Discrete Fourier Transform Fundamentals of the Discrete Fourier Transform Mark H. Richardson Hewlett Packard Corporation Santa Clara, California The Fourier transform is a mathematical procedure that was discovered by a French mathematician

More information

Lecture 27 Frequency Response 2

Lecture 27 Frequency Response 2 Lecture 27 Frequency Response 2 Fundamentals of Digital Signal Processing Spring, 2012 Wei-Ta Chu 2012/6/12 1 Application of Ideal Filters Suppose we can generate a square wave with a fundamental period

More information

to have roots with negative real parts, the necessary and sufficient conditions are that:

to have roots with negative real parts, the necessary and sufficient conditions are that: THE UNIVERSITY OF TEXAS AT SAN ANTONIO EE 543 LINEAR SYSTEMS AND CONTROL H O M E W O R K # 7 Sebastian A. Nugroho November 6, 7 Due date of the homework is: Sunday, November 6th @ :59pm.. The following

More information

EECE 2150 Circuits and Signals Final Exam Fall 2016 Dec 9

EECE 2150 Circuits and Signals Final Exam Fall 2016 Dec 9 EECE 2150 Circuits and Signals Final Exam Fall 2016 Dec 9 Name: Instructions: Write your name and section number on all pages Closed book, closed notes; Computers and cell phones are not allowed You can

More information

Course content (will be adapted to the background knowledge of the class):

Course content (will be adapted to the background knowledge of the class): Biomedical Signal Processing and Signal Modeling Lucas C Parra, parra@ccny.cuny.edu Departamento the Fisica, UBA Synopsis This course introduces two fundamental concepts of signal processing: linear systems

More information

9.4 Enhancing the SNR of Digitized Signals

9.4 Enhancing the SNR of Digitized Signals 9.4 Enhancing the SNR of Digitized Signals stepping and averaging compared to ensemble averaging creating and using Fourier transform digital filters removal of Johnson noise and signal distortion using

More information

The Discrete Fourier Transform

The Discrete Fourier Transform In [ ]: cd matlab pwd The Discrete Fourier Transform Scope and Background Reading This session introduces the z-transform which is used in the analysis of discrete time systems. As for the Fourier and

More information

Precision Machine Design

Precision Machine Design Precision Machine Design Topic 10 Vibration control step 1: Modal analysis 1 Purpose: The manner in which a machine behaves dynamically has a direct effect on the quality of the process. It is vital to

More information

Correlation, discrete Fourier transforms and the power spectral density

Correlation, discrete Fourier transforms and the power spectral density Correlation, discrete Fourier transforms and the power spectral density visuals to accompany lectures, notes and m-files by Tak Igusa tigusa@jhu.edu Department of Civil Engineering Johns Hopkins University

More information

ECGR4124 Digital Signal Processing Midterm Spring 2010

ECGR4124 Digital Signal Processing Midterm Spring 2010 ECGR4124 Digital Signal Processing Midterm Spring 2010 Name: LAST 4 DIGITS of Student Number: Do NOT begin until told to do so Make sure that you have all pages before starting Open book, 1 sheet front/back

More information

2.161 Signal Processing: Continuous and Discrete

2.161 Signal Processing: Continuous and Discrete MIT OpenCourseWare http://ocw.mit.edu.6 Signal Processing: Continuous and Discrete Fall 008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. M MASSACHUSETTS

More information

Overview of Bode Plots Transfer function review Piece-wise linear approximations First-order terms Second-order terms (complex poles & zeros)

Overview of Bode Plots Transfer function review Piece-wise linear approximations First-order terms Second-order terms (complex poles & zeros) Overview of Bode Plots Transfer function review Piece-wise linear approximations First-order terms Second-order terms (complex poles & zeros) J. McNames Portland State University ECE 222 Bode Plots Ver.

More information

ME 563 HOMEWORK # 7 SOLUTIONS Fall 2010

ME 563 HOMEWORK # 7 SOLUTIONS Fall 2010 ME 563 HOMEWORK # 7 SOLUTIONS Fall 2010 PROBLEM 1: Given the mass matrix and two undamped natural frequencies for a general two degree-of-freedom system with a symmetric stiffness matrix, find the stiffness

More information

TTT4120 Digital Signal Processing Suggested Solutions for Problem Set 2

TTT4120 Digital Signal Processing Suggested Solutions for Problem Set 2 Norwegian University of Science and Technology Department of Electronics and Telecommunications TTT42 Digital Signal Processing Suggested Solutions for Problem Set 2 Problem (a) The spectrum X(ω) can be

More information

Topic 7. Convolution, Filters, Correlation, Representation. Bryan Pardo, 2008, Northwestern University EECS 352: Machine Perception of Music and Audio

Topic 7. Convolution, Filters, Correlation, Representation. Bryan Pardo, 2008, Northwestern University EECS 352: Machine Perception of Music and Audio Topic 7 Convolution, Filters, Correlation, Representation Short time Fourier Transform Break signal into windows Calculate DFT of each window The Spectrogram spectrogram(y,1024,512,1024,fs,'yaxis'); A

More information

Signals, Instruments, and Systems W5. Introduction to Signal Processing Sampling, Reconstruction, and Filters

Signals, Instruments, and Systems W5. Introduction to Signal Processing Sampling, Reconstruction, and Filters Signals, Instruments, and Systems W5 Introduction to Signal Processing Sampling, Reconstruction, and Filters Acknowledgments Recapitulation of Key Concepts from the Last Lecture Dirac delta function (

More information

Bridge between continuous time and discrete time signals

Bridge between continuous time and discrete time signals 6 Sampling Bridge between continuous time and discrete time signals Sampling theorem complete representation of a continuous time signal by its samples Samplingandreconstruction implementcontinuous timesystems

More information

UNIVERSITY OF OSLO. Faculty of mathematics and natural sciences. Forslag til fasit, versjon-01: Problem 1 Signals and systems.

UNIVERSITY OF OSLO. Faculty of mathematics and natural sciences. Forslag til fasit, versjon-01: Problem 1 Signals and systems. UNIVERSITY OF OSLO Faculty of mathematics and natural sciences Examination in INF3470/4470 Digital signal processing Day of examination: December 1th, 016 Examination hours: 14:30 18.30 This problem set

More information

The Z-Transform. For a phasor: X(k) = e jωk. We have previously derived: Y = H(z)X

The Z-Transform. For a phasor: X(k) = e jωk. We have previously derived: Y = H(z)X The Z-Transform For a phasor: X(k) = e jωk We have previously derived: Y = H(z)X That is, the output of the filter (Y(k)) is derived by multiplying the input signal (X(k)) by the transfer function (H(z)).

More information