Massachusetts Institute of Technology Dept. of Electrical Engineering and Computer Science Fall Semester, Introduction to EECS 2.

Size: px
Start display at page:

Download "Massachusetts Institute of Technology Dept. of Electrical Engineering and Computer Science Fall Semester, Introduction to EECS 2."

Transcription

1 Massachusetts Istitute of Techology Dept. of Electrical Egieerig ad Computer Sciece Fall Semester, Itroductio to EECS Prelab Exercises Pre-Lab#3 Modulatio, demodulatio, ad filterig are itegral to the frequecy divisio multiplexig FDM) commuicatio system you will be buildig i Lab 3. The purpose of these prelab exercises is to familiarize you with the implemetatio of these sigal processig operatios usig simple siusoidal sigals. B. Uderstadig Modulatio The purpose of this exercise is to uderstad the mechaics of modulatio ad demodulatio as well as to study the effects of these operatios o sigals i the time ad frequecy domais. To achieve this purpose we will study the modulatio ad demodulatio of a Hz siusoid by 0 Hz. Cosider the sigal x t) = cosπ * t). This is a siusoid with amplitude of ad frequecy of Hz. Create a Matlab file called modulatio.m ad eter the followig commads to create ad visualize xt) i the time domai. Your code should geerate Figure.

2 Fs = 000; t = 0:/Fs:5; % Sample Frequecy i Hz % Time vector form 0-5 secods i icremets of % 0.00 secods eg , 0.00, ) x = cos*pi**t); % Cosie with amplitude ad frequecy Hz figure) % Create Figure plott,x) % Plot Sigal xt) i Figure title'time-domai'); % Add Title Time-Domai to Figure xlabel'time sec)'); % Add Time sec) as x-axis label of Figure ylabel'amplitude'); % Add Amplitude as y-axis label of Figure axis[0 - ]) % Set x-axis rage [0-] sec ad y-axis rage [- ] Figure Now lets visualize the magitude of the spectrum of xt). Sice xt) is a real sigal, the magitude of its spectrum is a eve fuctio symmetric about 0 Hz). We expect to see a peak at Hz ad aother at - Hz i the magitude of the spectrum of xt). Add the followig commads to your Matlab file, ad reru it to

3 visualize the magitude of the spectrum of xt). Your code should ow geerate Figure. X = fftx); N = legthx); f = [-N/:N/-]*Fs/N); % perform FFT o sigal xt) % Make frequecy vector f % that spas frequecies from -500 Hz to 500 Hz figure) % Create Figure plotf,absfftshiftx:n)))) % Plot positive ad egative spectrum of xt) axis[ ]); % Set x-axis rage [-5 5] Hz ad y-axis [0 3000] title'frequecy Domai'); % Add Frequecy Domai as title of Figure xlabel'frequecy Hz)'); % Add Frequecy Hz) as x-axis label of Figure ylabel'magitude'); % Add Magitue as y-axis label of Figure Figure Now lets modulate xt) upwards by 0 Hz. To do this we eed to geerate the modulatig sigal y t) = cosπ *0t), ad the create the modulated sigal mt) = xt)yt). Recall from the modulatio lecture otes that

4 cos{π f + f ) t} + cos{π f f ) t} cos π ft)*cosπf t) = m t) = cosπ t) *cosπ *0 * t) = cosπ * t) + cosπ *9t). Add the followig commads to your Matlab file, ad reru it to visualize the i the time-domai represetatio of the modulated sigal mt). Your code should geerate a plot similar to that i Figure 3. y = cos*pi*0*t); % Create modulatig sigal yt); a cosie % with amplitude ad frequecy 0 Hz m = x.*y; % Multiply sigal xt) by modulatig sigal % yt) to create the modulated sigal mt). figure3) % Create Figure 3 plott,m) % Plot Sigal mt) i Figure 3 title'time-domai'); % Add Title Time-Domai to Figure 3 xlabel'time sec)'); % Add Time sec) as x-axis label of Figure 3 ylabel'amplitude'); % Add Amplitude as y-axis label of Figure 3 axis[0 - ]) % Set x-axis rage [0-] sec ad y-axis rage [- ] Figure 3

5 Now lets visualize the magitude of the spectrum of mt). Sice mt) is a real sigal, the magitude of its spectrum is a eve fuctio symmetric about 0 Hz). We expect to see a peak at +/- 9 Hz ad +/- Hz i the magitude of the spectrum of mt). Add the followig commads to your Matlab file, ad reru it to visualize the magitude of the spectrum of xt). Your code should ow geerate a plot similar to Figure 4. M = fftm); f = [-N/:N/-]*Fs/N); % perform FFT o sigal mt) % Make frequecy vector f % that spas frequecies from -500 Hz to 500 Hz figure4) % Create Figure 4 plotf,absfftshiftm:n))));% Plot positive ad egative spectrum of mt) axis[ ]); % Set x-axis rage [-0 0] Hz ad y-axis [0 500] title'frequecy Domai'); % Add Frequecy Domai as title of Figure 4 xlabel'frequecy Hz)'); % Add Frequecy Hz) as x-axis label of Figure 4 ylabel'magitude'); % Add Magitude as y-axis label of Figure 4

6 f +f = Hz Cosie f -f = 9 Hz Cosie Figure 4 At this poit you have completed modulatig the sigal xt) by 0 Hz. You have implemeted the block diagram show i Figure 4. Modulatio xt)= cosπt) X mt) = yt)xt) yt)=cosπ0t) Figure 5

7 C. Uderstadig Demodulatio Now let s demodulate the sigal mt) dowward by 0 Hz i order to recover the sigal xt). To do this we multiply mt)yt). Recall from the modulatio lecture that the ct) should have the form below. c t) = cosπ f f ) t) + cosπf t) + cosπ f + f ) t) 4 4 c t) = cosπ *9t) + cosπ * t) + cosπ * t) 4 4 Add the followig commads to your Matlab file, ad reru it to visualize the i the time-domai represetatio of the demodulated sigal ct) You should see a plot like that i Figure 6. c = m.*y; % Multipy modulated sigal mt) by yt) to % create demodulated sigal ct) figure5) % Create Figure 5 plott,c) % Plot Sigal ct) i Figure 5 title'time-domai'); % Add Title Time-Domai to Figure 5 xlabel'time sec)'); % Add Time sec) as x-axis label of Figure 5 ylabel'amplitude'); % Add Amplitude as y-axis label of Figure 5 axis[0 - ]) % Set x-axis rage [0-] sec ad y-axis rage [- ]

8 Figure 6 Now visualize the magitude of the spectrum of ct). Sice ct) is a real sigal, the magitude of its spectrum is a eve fuctio symmetric about 0 Hz). We expect to see a peak at +/- Hz, +/- 9 Hz, ad +/- Hz. Add the followig commads to your Matlab file, ad reru it to visualize the magitude of the spectrum of ct). Your code should ow geerate a plot similar to Figure 7. C = fftc); f = [-N/:N/-]*Fs/N); % perform FFT o sigal mt) % Make frequecy vector f % that spas frequecies from -500 Hz to 500 Hz figure6) % Create Figure 6 plotf,absfftshiftc:n))));% Plot positive ad egative spectrum of ct) axis[ ]); % Set x-axis rage [-30 30] Hz ad y-axis [0 500] title'frequecy Domai'); % Add Frequecy Domai as title of Figure 6 xlabel'frequecy Hz)'); % Add Frequecy Hz) as x-axis label of Figure 6 ylabel'magitude'); % Add Magitude as y-axis label of Figure 6

9 Figure 7 Note that we did ot recover xt); we recovered xt) as well as some higher frequecy compoets. To remove the higher frequecy compoets 9Hz ad Hz compoets) we eed to apply a low frequecy filter to ct). Filterig is the topic of the ext pre-lab exercises. A. Low Pass ad Bad Pass Filter Desig Recall from the filterig lecture otes that, i geeral, the output of a differece equatio y) ca deped o preset ad past values of the iput x) as well as past values of the output. This depedece is captured i the equatio below = = + = = M j N i i i N o M i x b j y a y N x b x b x b x b M y a y a y a y 0 ) ) ) ) ) ) ) ) ) ) ) f = Hz f -f = 9 Hz Cosie f +f = Hz Cosie

10 I this pre-lab, we will be implemetig filters usig differece equatios whose output y) depeds oly o preset ad past values of the iput x). That meas the coefficiets a j = 0. This reduces our differece equatio to that show below y ) = b x ) + b x ) + b x ) + + b y ) = 0 N i= 0 b x i) i N x N) Also recall from the filterig lecture otes that the values ad umber of the b i coefficiets determies the type ad performace of the filter implemeted by the differece equatio. Through the followig exercises you we will become familiar with Matlab commads for buildig filters fir commad); visualizig the frequecy respose of filters freqz commad); ad applyig filters to sigals filter commad). Let s desig a low pass filter with order 8 ad a cutoff frequecy f c =5 Hz to extract the 0Hz compoet of x ) = siπ *0* * Ts) + siπ *50* * Ts) + siπ *90* * Ts) Create the file filterig.m, ad add the followig commads to create the sigal x) ad its time-domai plot. You should see a plot such as that i Figure 8. Fs = 000; % Sample Frequecy i Hz t = 0:/Fs:5; % Time vector form 0-5 secods i icremets of % 0.00 secods eg , 0.00, ) x = si*pi*0*t) + si*pi*50*t)+si*pi*90*t); figure) % Create Figure plott,x) % Plot Sigal x) i Figure title'time-domai'); % Add Title Time-Domai to Figure xlabel'time sec)'); % Add Time sec) as x-axis label of Figure ylabel'amplitude'); % Add Amplitude as y-axis label of Figure axis[ ]) % X-axis rage [0-0.5] sec ad y-axis rage [-4 4]

11 Figure 8 Now let s visualize the magitude of the spectrum of x). Sice x) is a real sigal, the magitude of its spectrum is a eve fuctio symmetric about 0 Hz). We expect to see a peak at +/-0 Hz, +/- 50 Hz, +/- 90 Hz. Add the followig commads to your Matlab file, ad reru it to visualize the magitude of the spectrum of x). Your code should ow geerate Figure 9. X = fftx); N = legthx); f = [-N/:N/-]*Fs/N); % perform FFT o sigal x) % Make frequecy vector f % that spas frequecies from -500 Hz to 500 Hz figure) % Create Figure plotf,absfftshiftx:n)))) % Plot positive ad egative spectrum of x) axis[ ]); % X-axis rage [-00 00] Hz ad y-axis [0 3000] title'frequecy Domai'); % Add Frequecy Domai as title of Figure xlabel'frequecy Hz)'); % Add Frequecy Hz) as x-axis label of Figure ylabel'magitude'); % Add Magitue as y-axis label of Figure

12 Figure 9 Now let s create the low pass filter that will extract the 0Hz compoet i x). The low pass filter will have a order of 8 ad a cutoff frequecy f c =5 Hz. Before gettig to the code lets lear about the commads we will be usig to create filters ad visualize their frequecy respose. To create our filter we will use the fir commad. To produce a low pass filter usig the fir commad, use the followig format B_Coffeciets = fir Filter_Order, Cuttoff_Frequecy, low ) The variable Filter_Order specify the order of the filter i our case 8). The variable Cuttoff_Frequecy specifies the cutoff frequecy of the filter i our case 5 Hz). The strig argumet low, specifies to the fir commad to create a low pass filter. After executig this commad, the variable B_Coffeciets will be a vector whose elemets are the b i coefficiets of a differece equatio that implemets a low pass filter.

13 To obtai the frequecy respose of a filter we will use the freqz commad. I geeral, this commad computes the frequecy respose of filter specified by a i ad b i coeffeciets; i our case we oly have b i. Use the followig format to call the freqz H = freqzb_coffeciets, [], whole ); F=-56:55)*Fs/5; The variable B_Coffeciets will be a vector of b i coeffeciets produced by the fir commad. The argumet [] specifies to the freqz commad that there are o a i coeffeciets. The strig argumet whole specifies to the freqz commad to compute the frequecy respose for positive ad egative frequecies defied i the variable F. Now add the followig commads to your Matlab file to create the low pass filter ad view its frequecy respose. You should see a plot like that Figure 0 we added the Figure 0A to give you practice with viewig spectra o log scales). Filter_Order = 8; % Set filter order to be 8 Cuttoff_Frequecy = 5*/Fs); % Set Cuttoff Frequecy to 5 Hz %Followig are commads for creatig filter ad filter frequecy respose B_Coeffeciets= firfilter_order, Cuttoff_Frequecy,'low'); H = freqzb_coeffeciets, [], 'whole'); F=-56:55)*Fs/5; figure3) % Create Figure 3 plotf,absfftshifth))) % Plot positive ad egative spectrum of filter axis[ ]); % X-axis rage [-50 50] Hz ad y-axis [0 ] title'frequecy Respose'); % Add Frequecy Respose as title of Figure 3 xlabel'frequecy Hz)'); % Add Frequecy Hz) as x-axis label of Figure 3 ylabel'magitude'); % Add Magitude as y-axis label of Figure 3

14 Figure 0 Figure 0A Now let s apply this low pass filter to the sigal x). To filter sigals we will use the Matlab commads filter. Use the followig format to call the commad filter output_sigal = filterb_coffeciets, [], iput_sigal);

15 The variable B_Coffeciets is a vector of b i coeffeciets produced by the fir commad) of the differece equatio represetig the filter. The argumet [] specifies to the filter commad that there are o a i coeffeciets i the differece equatio. The variable iput_sigal refers to the iput sigal to be filtered. After executig this commad, the variable output_sigal holds the filtered sigal. Now add the followig code to your Matlab file i order to filter the sigal x). You should see a plot like that i Figure. ylpf = filterb_coeffeciets,[],x); %Apply the filter to the sigal x) figure4) % Create Figure 4 plot0:legthylpf)-)/fs, ylpf) % Plot Sigal y) i Figure 4 title'time-domai'); % Add Title Time-Domai to Figure 4 xlabel'time sec)'); % Add Time sec) as x-axis label of Figure 4 ylabel'amplitude'); % Add Amplitude as y-axis label of Figure 4 axis[. - ]) % X-axis rage [0. ] sec ad y-axis rage [- ] Figure Now let s desig a bad pass filter to extract the 50Hz frequecy compoet from x ) = siπ *0* * Ts) + siπ *50* * Ts) + siπ *90* * Ts). The bad

16 pass filter will have a order 8 ad cutoff frequecies f c,low = 35 Hz ad f c,high = 65 Hz. To desig a low pass filter usig the fir commad use the followig format B_Coffeciets = fir Filter_Order, [Cuttoff_Frequecy_Low Cuttoff_Frequecy_High]) The variable Filter_Order specify the order of the filter i our case 8). The variables Cuttoff_Frequecy_Low ad Cuttoff_Frequecy_High specify f c,low ad f c,high respectively i our case f c,low = 35 Hz ad f c,high = 65 Hz). After executig this commad, the variable B_Coffeciets will be a vector whose elemets are the b i coefficiets of a differece equatio that implemets a badpass filter. There is o chage i how we call the commad freqz to evaluate the frequecy respose of the badpass filter. Now add the followig commads your Matlab file to create the badpass filter ad view its frequecy respose. You should see a plot such as that i Figure we added the Figure A to give you practice with viewig spectra o log scales). Filter_Order = 8; % Set filter order to be 8 Cuttoff_Frequecy_Low = 35*/Fs); % Set f c,low to 35 Hz Cuttoff_Frequecy_High = 65*/Fs); % Set f c,high = 65 Hz %Followig are commads for creatig filter ad filter frequecy respose B_Coeffeciets= firfilter_order, [Cuttoff_Frequecy_Low Cuttoff_Frequecy_High]); H = freqzb_coeffeciets, [], 'whole'); F=-56:55)*Fs/5; figure5) % Create Figure 5 plotf,absfftshifth))) % Plot positive ad egative spectrum of filter axis[ ]); % X-axis rage [-00 00] Hz ad y-axis [0 ] title'frequecy Respose'); % Add Frequecy Respose as title of Figure 5 xlabel'frequecy Hz)'); % Add Frequecy Hz) as x-axis label of Figure 5 ylabel'magitude'); % Add Magitude as y-axis label of Figure 5

17 Figure Figure A Now let s apply this badpass filter to the sigal x). There is o chage to the way i which we ivoke the commad filter. Now add the followig code to your Matlab file i order to filter the sigal x). You should see a plot like that i Figure 3.

18 yhbpf = filterb_coeffeciets,[],x); %Apply the filter to the sigal x) figure6) % Create Figure 6 plot0:legthyhbpf)-)/fs, yhbpf) % Plot Sigal y) i Figure 6 title'time-domai'); % Add Title Time-Domai to Figure 6 xlabel'time sec)'); % Add Time sec) as x-axis label of Figure 6 ylabel'amplitude'); % Add Amplitude as y-axis label of Figure 6 axis[..3 - ]) % X-axis rage [0..3] sec ad y-axis rage [- ] Figure 3 B. Filterig ad Modulatig Sigals With Nozero Badwidth So far we have bee dealig with the modulatio ad filterig of siusoids; these sigals have a sigle frequecy compoet ad zero badwidth. I this exercise you will modulate ad filter a voice sigal; the voice sigal is sampled at Fs = 50kHz, has a badwidth of 4 khz, ad is cetered at 0 khz. Complete Tasks -6, ad for each task save ad had-i the plots you produce.

19 Task : Dowload the voice sigal voice_sample.mat from the course website The voice sigal is the word cat sampled at a samplig frequecy Fs = 50kHz ad modulated up to a frequecy of 0kHz. Plot the spectrum of the voice sigal spectrum. Task : Modulate the voice sigal so that it is cetered at 40kHz ad plot the spectrum of the modulated sigal. Task 3: Create a badpass filter of order 56 ad f c,low = 35kHz ad f c,high = 45kHz. Plot the frequecy respose of the badpass filter. Task 4: Filter the modulated sigal resultig from Task usig the badpass filter, ad plot the spectrum of the filtered sigal. Task 5: Demodulate the filtered sigal from Task 4 back to DC 0Hz). Plot the spectrum of the demodulated sigal. Task 6: Create a low pass filter of order 56 ad f c = 4.5 khz. Filter the demodulated sigal from Task 5 usig the low pass filter. Plot the spectrum of the low pass filtered sigal.

Massachusetts Institute of Technology Dept. of Electrical Engineering and Computer Science Spring Semester, Introduction to EECS 2

Massachusetts Institute of Technology Dept. of Electrical Engineering and Computer Science Spring Semester, Introduction to EECS 2 Massachusetts Institute of Technology Dept. of Electrical Engineering and Computer Science Spring Semester, 2007 6.082 Introduction to EECS 2 Lab #3: Modulation and Filtering Goal:... 2 Instructions:...

More information

PRACTICAL FILTER DESIGN & IMPLEMENTATION LAB

PRACTICAL FILTER DESIGN & IMPLEMENTATION LAB 1 of 7 PRACTICAL FILTER DESIGN & IMPLEMENTATION LAB BEFORE YOU BEGIN PREREQUISITE LABS Itroductio to Oscilloscope Itroductio to Arbitrary/Fuctio Geerator EXPECTED KNOWLEDGE Uderstadig of LTI systems. Laplace

More information

EECE 301 Signals & Systems Prof. Mark Fowler

EECE 301 Signals & Systems Prof. Mark Fowler EECE 3 Sigals & Systems Prof. Mark Fowler Note Set #6 D-T Systems: DTFT Aalysis of DT Systems Readig Assigmet: Sectios 5.5 & 5.6 of Kame ad Heck / Course Flow Diagram The arrows here show coceptual flow

More information

LINEAR-PHASE FIR FILTERS: THE WINDOWING METHOD

LINEAR-PHASE FIR FILTERS: THE WINDOWING METHOD LINEAR-PHASE FIR FILTERS: THE WINDOWING ETHOD Prof. Siripog Potisuk FIR Filter Characteristics Completely specified by iput-output relatio: y[ ] b k0 x[ k] b k = filter coefficiets ad +1 = filter legth

More information

High-Order CCII-Based Mixed-Mode Universal Filter

High-Order CCII-Based Mixed-Mode Universal Filter High-Order CCII-Based Mixed-Mode Uiversal Filter Che-Nog Lee Departmet of Computer ad Commuicatio Egieerig, Taipei Chegshih Uiversity of Sciece ad Techology, Taipei, Taiwa, R. O. C. Abstract This paper

More information

Department of Electrical and Computer Engineering, Cornell University. ECE 3150: Microelectronics. Spring Due on April 26, 2018 at 7:00 PM

Department of Electrical and Computer Engineering, Cornell University. ECE 3150: Microelectronics. Spring Due on April 26, 2018 at 7:00 PM Departmet of Electrical ad omputer Egieerig, orell Uiersity EE 350: Microelectroics Sprig 08 Homework 0 Due o April 6, 08 at 7:00 PM Suggested Readigs: a) Lecture otes Importat Notes: ) MAKE SURE THAT

More information

信號與系統 Signals and Systems

信號與系統 Signals and Systems Sprig 2 信號與系統 Sigals ad Systems Chapter SS- Sigals ad Systems Feg-Li Lia NTU-EE Feb Ju Figures ad images used i these lecture otes are adopted from Sigals & Systems by Ala V. Oppeheim ad Ala S. Willsky,

More information

信號與系統 Signals and Systems

信號與系統 Signals and Systems Sprig 24 信號與系統 Sigals ad Systems Chapter SS- Sigals ad Systems Feg-Li Lia NTU-EE Feb4 Ju4 Figures ad images used i these lecture otes are adopted from Sigals & Systems by Ala V. Oppeheim ad Ala S. Willsky,

More information

APPLICATION NOTE UNDERSTANDING EFFECTIVE BITS

APPLICATION NOTE UNDERSTANDING EFFECTIVE BITS APPLICATION NOTE AN95091 INTRODUCTION UNDERSTANDING EFFECTIVE BITS Toy Girard, Sigatec, Desig ad Applicatios Egieer Oe criteria ofte used to evaluate a Aalog to Digital Coverter (ADC) or data acquisitio

More information

COMPRESSION OF TRANSMULTIPLEXED ACOUSTIC SIGNALS

COMPRESSION OF TRANSMULTIPLEXED ACOUSTIC SIGNALS COMPRESSION OF TRANSMULTIPLEXED ACOUSTIC SIGNALS Mariusz Ziółko, Przemysław Sypka ad Bartosz Ziółko Departmet of Electroics, AGH Uiversity of Sciece ad Techology, al. Mickiewicza 3, 3-59 Kraków, Polad,

More information

A Novel Small Signal Power Line Quality Measurement System

A Novel Small Signal Power Line Quality Measurement System IMTC 3 - Istrumetatio ad Measuremet Techology Coferece Vail, CO, USA, - May 3 A ovel Small Sigal Power Lie Quality Measuremet System Paul B. Crilly, Erik Leadro Boaldi, Levy Ely de Lacarda de Oliveira,

More information

Encode Decode Sample Quantize [ ] [ ]

Encode Decode Sample Quantize [ ] [ ] Referece Audio Sigal Processig I Shyh-Kag Jeg Departmet of Electrical Egieerig/ Graduate Istitute of Commuicatio Egieerig M. Bosi ad R. E. Goldberg, Itroductio to Digital Audio Codig ad Stadards, Kluwer

More information

Massachusetts Institute of Technology Dept. of Electrical Engineering and Computer Science Fall Semester, Introduction to EECS 2

Massachusetts Institute of Technology Dept. of Electrical Engineering and Computer Science Fall Semester, Introduction to EECS 2 Massachusetts Institute of Technology Dept. of Electrical Engineering and Computer Science Fall Semester, 2006 6.082 Introduction to EECS 2 Modulation and Demodulation Introduction A communication system

More information

Measurement of Equivalent Input Distortion AN 20

Measurement of Equivalent Input Distortion AN 20 Measuremet of Equivalet Iput Distortio AN 2 Applicatio Note to the R&D SYSTEM Traditioal measuremets of harmoic distortio performed o loudspeakers reveal ot oly the symptoms of the oliearities but also

More information

LETTER A Novel Adaptive Channel Estimation Scheme for DS-CDMA

LETTER A Novel Adaptive Channel Estimation Scheme for DS-CDMA 1274 LETTER A Novel Adaptive Chael Estimatio Scheme for DS-CDMA Che HE a), Member ad Xiao-xiag LI, Nomember SUMMARY This paper proposes a adaptive chael estimatio scheme, which uses differet movig average

More information

DIGITALLY TUNED SINUSOIDAL OSCILLATOR USING MULTIPLE- OUTPUT CURRENT OPERATIONAL AMPLIFIER FOR APPLICATIONS IN HIGH STABLE ACOUSTICAL GENERATORS

DIGITALLY TUNED SINUSOIDAL OSCILLATOR USING MULTIPLE- OUTPUT CURRENT OPERATIONAL AMPLIFIER FOR APPLICATIONS IN HIGH STABLE ACOUSTICAL GENERATORS Molecular ad Quatum Acoustics vol. 7, (6) 95 DGTALL TUNED SNUSODAL OSCLLATOR USNG MULTPLE- OUTPUT CURRENT OPERATONAL AMPLFER FOR APPLCATONS N HGH STABLE ACOUSTCAL GENERATORS Lesław TOPÓR-KAMŃSK Faculty

More information

Design of FPGA- Based SPWM Single Phase Full-Bridge Inverter

Design of FPGA- Based SPWM Single Phase Full-Bridge Inverter Desig of FPGA- Based SPWM Sigle Phase Full-Bridge Iverter Afarulrazi Abu Bakar 1, *,Md Zarafi Ahmad 1 ad Farrah Salwai Abdullah 1 1 Faculty of Electrical ad Electroic Egieerig, UTHM *Email:afarul@uthm.edu.my

More information

Comparison of Frequency Offset Estimation Methods for OFDM Burst Transmission in the Selective Fading Channels

Comparison of Frequency Offset Estimation Methods for OFDM Burst Transmission in the Selective Fading Channels Compariso of Frequecy Offset Estimatio Methods for OFDM Burst Trasmissio i the Selective Fadig Chaels Zbigiew Długaszewski Istitute of Electroics ad Telecommuicatios Pozań Uiversity of Techology 60-965

More information

CHAPTER 6 IMPLEMENTATION OF DIGITAL FIR FILTER

CHAPTER 6 IMPLEMENTATION OF DIGITAL FIR FILTER CHAPTER 6 IMPLEMENTATION OF DIGITAL FIR FILTER 6.1 INTRODUCTION The digital FIR filters are commo compoets i may digital sigal processig (DSP) systems. There are various applicatios like high speed/low

More information

OPTIMIZATION OF RNS FIR FILTERS FOR 6-INPUTS LUT BASED FPGAS

OPTIMIZATION OF RNS FIR FILTERS FOR 6-INPUTS LUT BASED FPGAS OPTIMIZATION OF RNS FIR FILTERS FOR 6-INPUTS LUT BASED FPGAS G.C. Cardarilli, M. Re, A. Salsao Uiversity of Rome Tor Vergata Departmet of Electroic Egieerig Via del Politecico 1 / 00133 / Rome / ITAL {marco.re,

More information

Summary of Random Variable Concepts April 19, 2000

Summary of Random Variable Concepts April 19, 2000 Summary of Radom Variable Cocepts April 9, 2000 his is a list of importat cocepts we have covered, rather tha a review that derives or explais them. he first ad primary viewpoit: A radom process is a idexed

More information

Single Bit DACs in a Nutshell. Part I DAC Basics

Single Bit DACs in a Nutshell. Part I DAC Basics Sigle Bit DACs i a Nutshell Part I DAC Basics By Dave Va Ess, Pricipal Applicatio Egieer, Cypress Semicoductor May embedded applicatios require geeratig aalog outputs uder digital cotrol. It may be a DC

More information

INCREASE OF STRAIN GAGE OUTPUT VOLTAGE SIGNALS ACCURACY USING VIRTUAL INSTRUMENT WITH HARMONIC EXCITATION

INCREASE OF STRAIN GAGE OUTPUT VOLTAGE SIGNALS ACCURACY USING VIRTUAL INSTRUMENT WITH HARMONIC EXCITATION XIX IMEKO World Cogress Fudametal ad Applied Metrology September 6, 9, Lisbo, Portugal INCREASE OF STRAIN GAGE OUTPUT VOLTAGE SIGNALS ACCURACY USING VIRTUAL INSTRUMENT WITH HARMONIC EXCITATION Dalibor

More information

11.11 Two-Channel Filter Banks 1/27

11.11 Two-Channel Filter Banks 1/27 . Two-Chael Filter Baks /7 Two-Chael Filter Baks M We wat to look at methods that are ot based o the DFT I geeral we wat to look at Fig..6 rom Porat ad igure out how to choose i & i to get Perect Reco

More information

A Simplified Method for Phase Noise Calculation

A Simplified Method for Phase Noise Calculation Poster: T-18 Simplified Method for Phase Noise Calculatio Massoud Tohidia, li Fotowat hmady* ad Mahmoud Kamarei Uiversity of Tehra, *Sharif Uiversity of Techology, Tehra, Ira Outlie Itroductio Prelimiary

More information

Outline. Motivation. Analog Functional Testing in Mixed-Signal Systems. Motivation and Background. Built-In Self-Test Architecture

Outline. Motivation. Analog Functional Testing in Mixed-Signal Systems. Motivation and Background. Built-In Self-Test Architecture Aalog Fuctioal Testig i Mixed-Sigal s Jie Qi Dept. of Electrical & Computer Egieerig Aubur Uiversity Co-Advisors: Charles Stroud ad Foster Dai Outlie Motivatio ad Backgroud Built-I Self-Test Architecture

More information

NOISE IN A SPECTRUM ANALYZER. Carlo F.M. Carobbi and Fabio Ferrini Department of Information Engineering University of Florence, Italy

NOISE IN A SPECTRUM ANALYZER. Carlo F.M. Carobbi and Fabio Ferrini Department of Information Engineering University of Florence, Italy NOISE IN A SPECTRUM ANALYZER by Carlo.M. Carobbi ad abio errii Departet of Iforatio Egieerig Uiversity of lorece, Italy 1. OBJECTIVE The objective is to easure the oise figure of a spectru aalyzer with

More information

Subband Coding of Speech Signals Using Decimation and Interpolation

Subband Coding of Speech Signals Using Decimation and Interpolation 3 th Iteratioal Coferece o AEROSPACE SCIENCES & AVIATION TECHNOLOGY, ASAT- 3, May 6 8, 9, E-Mail: asat@mtc.edu.eg Military Techical College, Kobry Elkobbah, Cairo, Egypt Tel : +() 459 43638, Fax: +() 698

More information

Laboratory Exercise 3: Dynamic System Response Laboratory Handout AME 250: Fundamentals of Measurements and Data Analysis

Laboratory Exercise 3: Dynamic System Response Laboratory Handout AME 250: Fundamentals of Measurements and Data Analysis Laboratory Exercise 3: Dyamic System Respose Laboratory Hadout AME 50: Fudametals of Measuremets ad Data Aalysis Prepared by: Matthew Beigto Date exercises to be performed: Deliverables: Part I 1) Usig

More information

EXPERIMENT 4 INTRODUCTION TO AMPLITUDE MODULATION SUBMITTED BY

EXPERIMENT 4 INTRODUCTION TO AMPLITUDE MODULATION SUBMITTED BY EXPERIMENT 4 INTRODUCTION TO AMPLITUDE MODULATION SUBMITTED BY NAME:. STUDENT ID:.. ROOM: INTRODUCTION TO AMPLITUDE MODULATION Purpose: The objectives of this laboratory are:. To introduce the spectrum

More information

Multipath and Doppler Effects and Models

Multipath and Doppler Effects and Models Multipath ad Doppler Effects ad Models There are two parts i this lecture. I Part I, we will first itroduce the mutipath propagatio effects ad Doppler frequecy shift/spread effects. I Part II, we will

More information

A Study of Implementation of Digital Signal Processing for Adaptive Array Antenna

A Study of Implementation of Digital Signal Processing for Adaptive Array Antenna MASTER THESIS A Study of Implemetatio of Digital Sigal Processig for Adaptive Array Atea Supervisor: Associate Prof. Hiroyuki ARAI Submitted o Feb., Divisio of Electrical Ad Computer Egieerig, Yokohama

More information

Objectives. Some Basic Terms. Analog and Digital Signals. Analog-to-digital conversion. Parameters of ADC process: Related terms

Objectives. Some Basic Terms. Analog and Digital Signals. Analog-to-digital conversion. Parameters of ADC process: Related terms Objectives. A brief review of some basic, related terms 2. Aalog to digital coversio 3. Amplitude resolutio 4. Temporal resolutio 5. Measuremet error Some Basic Terms Error differece betwee a computed

More information

Fitting Signals into Given Spectrum Modulation Methods

Fitting Signals into Given Spectrum Modulation Methods S-72.333 Post-graduate Course i Radio Commuicatios 2001-2002 Fittig Sigals ito Give Spectrum Modulatio Methods Lars Maura 41747e Lars.maura@hut.fi Abstract Modulatio is the process where the message iformatio

More information

Tehrani N Journal of Scientific and Engineering Research, 2018, 5(7):1-7

Tehrani N Journal of Scientific and Engineering Research, 2018, 5(7):1-7 Available olie www.jsaer.com, 2018, 5(7):1-7 Research Article ISSN: 2394-2630 CODEN(USA): JSERBR 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

More information

Mike Li Andy Martwick Gerry Talbot Jan Wilstrup

Mike Li Andy Martwick Gerry Talbot Jan Wilstrup ITC 24 Trasfer Fuctios For The Referece Clock Jitter I A Serial Lik: Theory Ad Applicatios Mike Li Ady Martwick Gerry Talbot Ja Wilstrup Trasfer Fuctios For The Referece Clock Jitter I A Serial Lik: Theory

More information

Problem of calculating time delay between pulse arrivals

Problem of calculating time delay between pulse arrivals America Joural of Egieerig Research (AJER) 5 America Joural of Egieerig Research (AJER) e-issn: 3-847 p-issn : 3-936 Volume-4, Issue-4, pp-3-4 www.ajer.org Research Paper Problem of calculatig time delay

More information

A 5th order video band elliptic filter topology using OTRA based Fleischer Tow Biquad with MOS-C Realization

A 5th order video band elliptic filter topology using OTRA based Fleischer Tow Biquad with MOS-C Realization Natural ad Egieerig Scieces 44 olume 1, No. 2, 44-52, 2016 A 5th order video bad elliptic filter topology usig OTA based Fleischer Tow Biquad with MOS-C ealiatio Ahmet Gökçe 1*, Uğur Çam 2 1 Faculty of

More information

Design of FPGA Based SPWM Single Phase Inverter

Design of FPGA Based SPWM Single Phase Inverter Proceedigs of MUCEET2009 Malaysia Techical Uiversities Coferece o Egieerig ad Techology Jue 20-22, 2009, MS Garde,Kuata, Pahag, Malaysia MUCEET2009 Desig of FPGA Based SPWM Sigle Phase Iverter Afarulrazi

More information

CHAPTER 5 A NEAR-LOSSLESS RUN-LENGTH CODER

CHAPTER 5 A NEAR-LOSSLESS RUN-LENGTH CODER 95 CHAPTER 5 A NEAR-LOSSLESS RUN-LENGTH CODER 5.1 GENERAL Ru-legth codig is a lossless image compressio techique, which produces modest compressio ratios. Oe way of icreasig the compressio ratio of a ru-legth

More information

Cascaded Feedforward Sigma-delta Modulator for Wide Bandwidth Applications

Cascaded Feedforward Sigma-delta Modulator for Wide Bandwidth Applications Tamkag Joural of Sciece ad Egieerig, Vol. 4, No., pp. 55-64 () 55 Cascaded Feedforward Sigma-delta Modulator for Wide Badwidth Applicatios Je-Shiu Chiag, Teg-Hug Chag ad Pou-Chu Chou Departmet of Electrical

More information

4. INTERSYMBOL INTERFERENCE

4. INTERSYMBOL INTERFERENCE DATA COMMUNICATIONS 59 4. INTERSYMBOL INTERFERENCE 4.1 OBJECT The effects of restricted badwidth i basebad data trasmissio will be studied. Measuremets relative to itersymbol iterferece, usig the eye patter

More information

A SIMPLE METHOD OF GOAL DIRECTED LOSSY SYNTHESIS AND NETWORK OPTIMIZATION

A SIMPLE METHOD OF GOAL DIRECTED LOSSY SYNTHESIS AND NETWORK OPTIMIZATION A SIMPL MOD OF GOAL DIRCD LOSSY SYNSIS AND NWORK OPIMIZAION Karel ájek a), ratislav Michal, Jiří Sedláček a) Uiversity of Defece, Kouicova 65,63 00 Bro,Czech Republic, Bro Uiversity of echology, Kolejí

More information

MEASUREMENT AND CONTORL OF TOTAL HARMONIC DISTORTION IN FREQUENCY RANGE 0,02-10KHZ.

MEASUREMENT AND CONTORL OF TOTAL HARMONIC DISTORTION IN FREQUENCY RANGE 0,02-10KHZ. ELECTRONICS 00 September, Sozopol, BLGARIA MEASREMENT AND CONTORL OF TOTAL HARMONIC DISTORTION IN FREQENCY RANGE 0,0-0KHZ. Plame Agelov Agelov Faculty for Computer Sciece, Egieerig ad Natural Studies,

More information

Intermediate Information Structures

Intermediate Information Structures Modified from Maria s lectures CPSC 335 Itermediate Iformatio Structures LECTURE 11 Compressio ad Huffma Codig Jo Roke Computer Sciece Uiversity of Calgary Caada Lecture Overview Codes ad Optimal Codes

More information

Delta- Sigma Modulator with Signal Dependant Feedback Gain

Delta- Sigma Modulator with Signal Dependant Feedback Gain Delta- Sigma Modulator with Sigal Depedat Feedback Gai K.Diwakar #1 ad V.Vioth Kumar *2 # Departmet of Electroics ad Commuicatio Egieerig * Departmet of Electroics ad Istrumetatio Egieerig Vel Tech Uiversity,Cheai,

More information

Chapter 2: Sample Questions, Problems and Solutions Bölüm 2: Örnek Sorular, Problemler ve Çözümleri

Chapter 2: Sample Questions, Problems and Solutions Bölüm 2: Örnek Sorular, Problemler ve Çözümleri Chapter : Sample Questios, Problems ad Solutios Bölüm : Örek Sorular, Problemler ve Çözümleri Örek Sorular (Sample Questios): Fourier series What is a badwidth? What is a voice-grade? Nyquist theorem Shao

More information

SEVEN-LEVEL THREE PHASE CASCADED H-BRIDGE INVERTER WITH A SINGLE DC SOURCE

SEVEN-LEVEL THREE PHASE CASCADED H-BRIDGE INVERTER WITH A SINGLE DC SOURCE SEVEN-LEVEL THREE PHASE CASCADED H-BRIDGE INVERTER WITH A SINGLE DC SOURCE T. Porselvi 1 ad Ragaath Muthu 1 Sri Sairam Egieerig College, Cheai, Idia SSN College of Egieerig, Cheai, Idia E-Mail: tporselvi@yahoo.com

More information

High Speed Area Efficient Modulo 2 1

High Speed Area Efficient Modulo 2 1 High Speed Area Efficiet Modulo 2 1 1-Soali Sigh (PG Scholar VLSI, RKDF Ist Bhopal M.P) 2- Mr. Maish Trivedi (HOD EC Departmet, RKDF Ist Bhopal M.P) Adder Abstract Modular adder is oe of the key compoets

More information

A SIMPLE METHOD OF GOAL DIRECTED LOSSY SYNTHESIS AND NETWORK OPTIMIZATION

A SIMPLE METHOD OF GOAL DIRECTED LOSSY SYNTHESIS AND NETWORK OPTIMIZATION 49 A SIMPL MOD OF GOAL DIRCD LOSSY SYNSIS AND NWORK OPIMIZAION K. ájek a),. Michal b), J. Sedláek b), M. Steibauer b) a) Uiversity of Defece, Kouicova 65,63 00 ro,czech Republic, b) ro Uiversity of echology,

More information

Lab 2: Common Source Amplifier.

Lab 2: Common Source Amplifier. epartet of Electrical ad Coputer Egieerig Fall 1 Lab : Coo Source plifier. 1. OBJECTIVES Study ad characterize Coo Source aplifier: Bias CS ap usig MOSFET curret irror; Measure gai of CS ap with resistive

More information

Technical Explanation for Counters

Technical Explanation for Counters Techical Explaatio for ers CSM_er_TG_E Itroductio What Is a er? A er is a device that couts the umber of objects or the umber of operatios. It is called a er because it couts the umber of ON/OFF sigals

More information

A New Space-Repetition Code Based on One Bit Feedback Compared to Alamouti Space-Time Code

A New Space-Repetition Code Based on One Bit Feedback Compared to Alamouti Space-Time Code Proceedigs of the 4th WSEAS It. Coferece o Electromagetics, Wireless ad Optical Commuicatios, Veice, Italy, November 0-, 006 107 A New Space-Repetitio Code Based o Oe Bit Feedback Compared to Alamouti

More information

ELEC 204 Digital Systems Design

ELEC 204 Digital Systems Design Fall 2013, Koç Uiversity ELEC 204 Digital Systems Desig Egi Erzi College of Egieerig Koç Uiversity,Istabul,Turkey eerzi@ku.edu.tr KU College of Egieerig Elec 204: Digital Systems Desig 1 Today: Datapaths

More information

ELT COMMUNICATION THEORY

ELT COMMUNICATION THEORY ELT 41307 COMMUNICATION THEORY Matlab Exercise #1 Sampling, Fourier transform, Spectral illustrations, and Linear filtering 1 SAMPLING The modeled signals and systems in this course are mostly analog (continuous

More information

Transfer Functions For The Reference Clock Jitter In A Serial Link: Theory And Applications in PCI Express

Transfer Functions For The Reference Clock Jitter In A Serial Link: Theory And Applications in PCI Express DesigCo 25 Leadig Edge Commuicatio Desig Coferece Trasfer Fuctios For The Referece Clock Jitter I A Serial Lik: Theory Ad Applicatios i PCI Express Mike Li, PhD Wavecrest Corporatio 1735 Techology Drive,

More information

A study on the efficient compression algorithm of the voice/data integrated multiplexer

A study on the efficient compression algorithm of the voice/data integrated multiplexer A study o the efficiet compressio algorithm of the voice/data itegrated multiplexer Gyou-Yo CHO' ad Dog-Ho CHO' * Dept. of Computer Egieerig. KyiigHee Uiv. Kiheugup Yogiku Kyuggido, KOREA 449-71 PHONE

More information

Lecture 4: Frequency Reuse Concepts

Lecture 4: Frequency Reuse Concepts EE 499: Wireless & Mobile Commuicatios (8) Lecture 4: Frequecy euse Cocepts Distace betwee Co-Chael Cell Ceters Kowig the relatio betwee,, ad, we ca easily fid distace betwee the ceter poits of two co

More information

Introduction to Wireless Communication Systems ECE 476/ECE 501C/CS 513 Winter 2003

Introduction to Wireless Communication Systems ECE 476/ECE 501C/CS 513 Winter 2003 troductio to Wireless Commuicatio ystems ECE 476/ECE 501C/C 513 Witer 2003 eview for Exam #1 March 4, 2003 Exam Details Must follow seatig chart - Posted 30 miutes before exam. Cheatig will be treated

More information

CP 405/EC 422 MODEL TEST PAPER - 1 PULSE & DIGITAL CIRCUITS. Time: Three Hours Maximum Marks: 100

CP 405/EC 422 MODEL TEST PAPER - 1 PULSE & DIGITAL CIRCUITS. Time: Three Hours Maximum Marks: 100 PULSE & DIGITAL CIRCUITS Time: Three Hours Maximum Marks: 0 Aswer five questios, takig ANY TWO from Group A, ay two from Group B ad all from Group C. All parts of a questio (a, b, etc. ) should be aswered

More information

ICM7213. One Second/One Minute Timebase Generator. Features. Description. Ordering Information. Pinout. August 1997

ICM7213. One Second/One Minute Timebase Generator. Features. Description. Ordering Information. Pinout. August 1997 August 997 Features Guarateed V Operatio Very Low Curret Cosumptio (Typ).... µa at V All Outputs TTL Compatible O Chip Oscillator Feedback Resistor Oscillator Requires Oly Exteral compoets: Fixed Capacitor,

More information

Subscriber Pulse Metering (SPM) Detection

Subscriber Pulse Metering (SPM) Detection Subscriber Pulse Meterig () Detectio Versatile telephoe call-charge ad security fuctios for PBX, Payphoe ad Pair-Gai applicatios - employig CML s family of 12kHz ad 16kHz ICs INNOVATIONS INV/Telecom//1

More information

A New Design of Log-Periodic Dipole Array (LPDA) Antenna

A New Design of Log-Periodic Dipole Array (LPDA) Antenna Joural of Commuicatio Egieerig, Vol., No., Ja.-Jue 0 67 A New Desig of Log-Periodic Dipole Array (LPDA) Atea Javad Ghalibafa, Seyed Mohammad Hashemi, ad Seyed Hassa Sedighy Departmet of Electrical Egieerig,

More information

A Dual-Band Through-the-Wall Imaging Radar Receiver Using a Reconfigurable High-Pass Filter

A Dual-Band Through-the-Wall Imaging Radar Receiver Using a Reconfigurable High-Pass Filter JOURNAL OF ELECTROMAGNETIC ENGINEERING AND SCIENCE, VOL. 16, NO. 3, 164~168, JUL. 2016 http://dx.doi.org/10.5515/jkiees.2016.16.3.164 ISSN 2234-8395 (Olie) ISSN 2234-8409 (Prit) A Dual-Bad Through-the-Wall

More information

Logarithms APPENDIX IV. 265 Appendix

Logarithms APPENDIX IV. 265 Appendix APPENDIX IV Logarithms Sometimes, a umerical expressio may ivolve multiplicatio, divisio or ratioal powers of large umbers. For such calculatios, logarithms are very useful. They help us i makig difficult

More information

Sampling. Introduction to Digital Data Acquisition: Physical world is analog CSE/EE Digital systems need to

Sampling. Introduction to Digital Data Acquisition: Physical world is analog CSE/EE Digital systems need to Itroductio to Digital Data Acuisitio: Samplig Physical world is aalog Digital systems eed to Measure aalog uatities Switch iputs, speech waveforms, etc Cotrol aalog systems Computer moitors, automotive

More information

Measurement of EVM (Error Vector Magnitude) for 3G Receivers

Measurement of EVM (Error Vector Magnitude) for 3G Receivers REPORT 1 (78) Measuremet of EVM (Error Vector Magitude) for 3G Receivers Master s Thesis by Osvaldo Medoza Iteratioal Master Program of Digital Commuicatios Systems & Techology, Chalmers Uiversity of Techology,

More information

An Adaptive Image Denoising Method based on Thresholding

An Adaptive Image Denoising Method based on Thresholding A Adaptive Image Deoisig Method based o Thresholdig HARI OM AND MANTOSH BISWAS Departmet of Computer Sciece & Egieerig Idia School of Mies, Dhabad Jharkad-86004 INDIA {hariom4idia, matoshb}@gmail.com Abstract

More information

Implementation of OFDM wireless communication model for achieving the improved BER using DWT-OFDM

Implementation of OFDM wireless communication model for achieving the improved BER using DWT-OFDM www.ijecs.i Iteratioal Joural Of Egieerig Ad Computer Sciece ISSN: 2319-7242 Volume 6 Issue 1 Ja. 2017, Page No. 19951-19959 Idex Copericus Value (2015): 58.10, DOI: 10.18535/ijecs/v6i1.17 Implemetatio

More information

Total Harmonics Distortion Reduction Using Adaptive, Weiner, and Kalman Filters

Total Harmonics Distortion Reduction Using Adaptive, Weiner, and Kalman Filters Wester Michiga Uiversity ScholarWorks at WMU Master's Theses Graduate College 6-2016 Total Harmoics Distortio Reductio Usig Adaptive, Weier, ad Kalma Filters Liqaa Alhafadhi Wester Michiga Uiversity, liquaa.alhafadhi@yahoo.com

More information

Embedded Microcomputer Systems Lecture 9.1

Embedded Microcomputer Systems Lecture 9.1 Embedded Microcomputer Systems Lecture 9. Recap from last time Aalog circuit desig Noise Microphoe iterface Objectives Active low pass filter Nyquist Theorem ad aliasig Speaker amplifier Lookig at oise,

More information

Research Article Dominant Mode Wave Impedance of Regular Polygonal Waveguides

Research Article Dominant Mode Wave Impedance of Regular Polygonal Waveguides Microwave Sciece ad Techology, Article ID 485794, 4 pages http://dx.doi.org/10.1155/2014/485794 Research Article Domiat Mode Wave Impedace of Regular Polygoal Waveguides Vyacheslav V. Komarov Istitute

More information

ADSP ADSP ADSP ADSP. Advanced Digital Signal Processing (18-792) Spring Fall Semester, Department of Electrical and Computer Engineering

ADSP ADSP ADSP ADSP. Advanced Digital Signal Processing (18-792) Spring Fall Semester, Department of Electrical and Computer Engineering ADSP ADSP ADSP ADSP Advaced Digital Sigal Processig (8-79) Sprig Fall Semester, 7 Departmet of Electrical ad Computer Egieerig OTES O RADOM PROCESSES I. Itroductio Radom processes are at the heart of most

More information

Analysis of SDR GNSS Using MATLAB

Analysis of SDR GNSS Using MATLAB Iteratioal Joural of Computer Techology ad Electroics Egieerig (IJCTEE) Volume 5, Issue 3, Jue 2015 Aalysis of SDR GNSS Usig MATLAB Abstract This paper explais a software defied radio global avigatio satellite

More information

Project 2 - Speech Detection with FIR Filters

Project 2 - Speech Detection with FIR Filters Project 2 - Speech Detection with FIR Filters ECE505, Fall 2015 EECS, University of Tennessee (Due 10/30) 1 Objective The project introduces a practical application where sinusoidal signals are used to

More information

Design of a Mixed Prime Factor FFT for Portable Digital Radio Mondiale Receiver

Design of a Mixed Prime Factor FFT for Portable Digital Radio Mondiale Receiver 590 Desig of a Mixed Prime Factor FFT for Portable Digital Radio Modiale Receiver Dog-Su Kim, Member, IEEE, Sag-Seol Lee, Jae-Yeo Sog, Kyu-Yeul Wag, ad Duck-Ji Chug Abstract To achieve better soud quality

More information

Chapter 3 Digital Logic Structures

Chapter 3 Digital Logic Structures Copyright The McGraw-HillCompaies, Ic. Permissio required for reproductio or display. Computig Layers Chapter 3 Digital Logic Structures Problems Algorithms Laguage Istructio Set Architecture Microarchitecture

More information

Discrete Mathematics and Probability Theory Spring 2014 Anant Sahai Note 12

Discrete Mathematics and Probability Theory Spring 2014 Anant Sahai Note 12 EECS 70 Discrete Mathematics ad Probability Theory Sprig 204 Aat Sahai Note 2 Probability Examples Based o Coutig We will ow look at examples of radom experimets ad their correspodig sample spaces, alog

More information

Fault Diagnosis in Rolling Element Bearing Using Filtered Vibration and Acoustic Signal

Fault Diagnosis in Rolling Element Bearing Using Filtered Vibration and Acoustic Signal Volume 8 o. 8 208, 95-02 ISS: 3-8080 (prited versio); ISS: 34-3395 (o-lie versio) url: http://www.ijpam.eu ijpam.eu Fault Diagosis i Rollig Elemet Usig Filtered Vibratio ad Acoustic Sigal Sudarsa Sahoo,

More information

Harnessing oversampling in correlation-coded OTDR

Harnessing oversampling in correlation-coded OTDR Haressig oversamplig i correlatio-coded OTDR Ruoli Liao, 1 Mig Tag, 1,* Ca Zhao, 1 Hao Wu, 1 Sogia Fu, 1 Demig Liu, 1 ad Perry Pig Shum 1 Wuha Natioal Laboratory for Optoelectroics (WNLO) ad Natioal Egieerig

More information

Effective Size Reduction Technique for Microstrip Filters

Effective Size Reduction Technique for Microstrip Filters Joural of Electromagetic Aalysis ad Applicatios, 13, 5, 166-174 http://dx.doi.org/1.436/jemaa.13.547 Published Olie April 13 (http://www.scirp.org/joural/jemaa) Effective Size Reductio Techique for Microstrip

More information

E X P E R I M E N T 13

E X P E R I M E N T 13 E X P E R I M E N T 13 Stadig Waves o a Strig Produced by the Physics Staff at Colli College Copyright Colli College Physics Departmet. All Rights Reserved. Uiversity Physics, Exp 13: Stadig Waves o a

More information

Voice Command Recognition System Based on MFCC and VQ Algorithms

Voice Command Recognition System Based on MFCC and VQ Algorithms Voice Commad Recogitio System Based o MFCC ad VQ Algorithms Mahdi Shaeh, ad Azizollah Taheri Abstract The goal of this project is to desig a system to recogitio voice commads. Most of voice recogitio systems

More information

Design Considerations for Direct RF Sampling Receiver in GNSS Environment

Design Considerations for Direct RF Sampling Receiver in GNSS Environment Desig Cosideratios for Direct RF Samplig Receiver i GNSS Eviromet Ville Syrjälä, Mikko Valkama ad Markku Refors Tampere Uiversity of Techology Istitute of Commuicatios Egieerig Korkeakoulukatu 1, Tampere,

More information

Roberto s Notes on Infinite Series Chapter 1: Series Section 2. Infinite series

Roberto s Notes on Infinite Series Chapter 1: Series Section 2. Infinite series Roberto s Notes o Ifiite Series Chapter : Series Sectio Ifiite series What you eed to ow already: What sequeces are. Basic termiology ad otatio for sequeces. What you ca lear here: What a ifiite series

More information

Sensors & Transducers 2015 by IFSA Publishing, S. L.

Sensors & Transducers 2015 by IFSA Publishing, S. L. Sesors & Trasducers 215 by IFSA Publishig, S. L. http://www.sesorsportal.com Uiversal Sesors ad Trasducers Iterface for Mobile Devices: Metrological Characteristics * Sergey Y. YURISH ad Javier CAÑETE

More information

Optimal Arrangement of Buoys Observable by Means of Radar

Optimal Arrangement of Buoys Observable by Means of Radar Optimal Arragemet of Buoys Observable by Meas of Radar TOMASZ PRACZYK Istitute of Naval Weapo ad Computer Sciece Polish Naval Academy Śmidowicza 69, 8-03 Gdyia POLAND t.praczy@amw.gdyia.pl Abstract: -

More information

Solutions Manual for Digital Signal Processing using Matlab - Second Edition

Solutions Manual for Digital Signal Processing using Matlab - Second Edition Solutios Maual for Digital Sigal Processig usig Matlab - Secod Editio Viay K. Igle 27 2 Solutios Maual for DSP usig Matlab (2d Editio) 26 Chapter 2 Discrete-Time Sigals ad Systems P2.1 Geerate the followig

More information

A New FDTD Method for the Study of MRI Pulsed Field Gradient- Induced Fields in the Human Body

A New FDTD Method for the Study of MRI Pulsed Field Gradient- Induced Fields in the Human Body A New FDTD Method for the Study of MRI Pulsed Field Gradiet- Iduced Fields i the Huma Body Stuart Crozier, Huawei Zhao ad Liu Feg Cetre For Magetic Resoace, The Uiversity of Queeslad, St. Lucia, Qld 4072,

More information

Acquisition of GPS Software Receiver Using Split-Radix FFT

Acquisition of GPS Software Receiver Using Split-Radix FFT 006 IEEE Coferece o Systems, Ma, ad Cyberetics October -, 006, Taipei, Taiwa Acquisitio of GPS Software Receiver Usig Split-Radix FFT W. H. Li, W. L. Mao, H. W. Tsao, F. R. Chag, ad W. H. Huag Abstract

More information

GENERATE AND MEASURE STANDING SOUND WAVES IN KUNDT S TUBE.

GENERATE AND MEASURE STANDING SOUND WAVES IN KUNDT S TUBE. Acoustics Wavelegth ad speed of soud Speed of Soud i Air GENERATE AND MEASURE STANDING SOUND WAVES IN KUNDT S TUBE. Geerate stadig waves i Kudt s tube with both eds closed off. Measure the fudametal frequecy

More information

Reconfigurable architecture of RNS based high speed FIR filter

Reconfigurable architecture of RNS based high speed FIR filter Idia Joural of Egieerig & Materials Scieces Vol. 21, April 214, pp. 233-24 Recofigurable architecture of RNS based high speed FIR filter J Britto Pari* & S P Joy Vasatha Rai Departmet of Electroics Egieerig,

More information

A Comparative Study on LUT and Accumulator Radix-4 Based Multichannel RNS FIR Filter Architectures

A Comparative Study on LUT and Accumulator Radix-4 Based Multichannel RNS FIR Filter Architectures A Comparative Study o LUT ad Accumulator Radix-4 Based Multichael RNS FIR Filter Architectures Britto Pari. J #, Joy Vasatha Rai S.P *2 # Research Scholar, Departmet of Electroics Egieerig, MIT campus,

More information

Reducing Power Dissipation in Complex Digital Filters by using the Quadratic Residue Number System Λ

Reducing Power Dissipation in Complex Digital Filters by using the Quadratic Residue Number System Λ Reducig Power Dissipatio i Complex Digital Filters by usig the Quadratic Residue Number System Λ Agelo D Amora, Alberto Naarelli, Marco Re ad Gia Carlo Cardarilli Departmet of Electrical Egieerig Uiversity

More information

Cancellation of Multiuser Interference due to Carrier Frequency Offsets in Uplink OFDMA

Cancellation of Multiuser Interference due to Carrier Frequency Offsets in Uplink OFDMA Cacellatio of Multiuser Iterferece due to Carrier Frequecy Offsets i Upli OFDMA S. Maohar, V. Tiiya, D. Sreedhar, ad A. Chocaligam Departmet of ECE, Idia Istitute of Sciece, Bagalore 56001, INDIA Abstract

More information

ELEN 624 Signal Integrity

ELEN 624 Signal Integrity ELEN 624 Sigal Itegrity Lecture 8 Istructor: Ji hao 408-580-7043, jzhao@ieee.org ELEN 624, Fall 2006 W8, 11/06/2006-1 Ageda Homework review S parameter calculatio From time domai ad frequecy domai Some

More information

SPARQ Dynamic Range Peter J. Pupalaikis VP & Principal Technologist

SPARQ Dynamic Range Peter J. Pupalaikis VP & Principal Technologist SPARQ Dyamic Rage Peter J. Pupalaiis VP & Pricipal Techologist Summary This paper discusses the dyamic rage of the SPARQ sigal itegrity etwor aalyzer ad cosiders the impact of several ey specificatios.

More information

10GBASE-T. length of precoding response, and PMA training

10GBASE-T. length of precoding response, and PMA training 1GBASE-T TxFE solutios, dpsnr vs legth of precodig respose, ad PMA traiig IEEE P82.3a Task Force Austi, May 18-2, 25 Gottfried Ugerboeck 1 Cotets Study of trasmit frot-ed solutios Simple : o digital filterig,

More information

Spread Spectrum Signal for Digital Communications

Spread Spectrum Signal for Digital Communications Wireless Iformatio Trasmissio System Lab. Spread Spectrum Sigal for Digital Commuicatios Istitute of Commuicatios Egieerig Natioal Su Yat-se Uiversity Spread Spectrum Commuicatios Defiitio: The trasmitted

More information

Zonerich AB-T88. MINI Thermal Printer COMMAND SPECIFICATION. Zonerich Computer Equipments Co.,Ltd MANUAL REVISION EN 1.

Zonerich AB-T88. MINI Thermal Printer COMMAND SPECIFICATION. Zonerich Computer Equipments Co.,Ltd  MANUAL REVISION EN 1. Zoerich AB-T88 MINI Thermal Priter COMMAND SPECIFICATION MANUAL REVISION EN. Zoerich Computer Equipmets Co.,Ltd http://www.zoerich.com Commad List Prit ad lie feed Prit ad carriage retur Trasmissio real-time

More information