Multivariate Methods. Measurements of p variables on each of n objects. Multivariate data Data display Principal component analysis

Size: px
Start display at page:

Download "Multivariate Methods. Measurements of p variables on each of n objects. Multivariate data Data display Principal component analysis"

Transcription

1 Multiariate Method Multiariate data Data diplay Prinipal omponent analyi Unuperied learning tehnique Diriminant analyi Superied learning tehnique Cluter analyi Unuperied learning tehnique (Read note on thi) 1 Meaurement of p ariable on eah of n objet e.g. length & width of petal & epal of eah of 150 iri flower key feature i that ariable are orrelated & oberation independent Data Diplay Satterplot of pair of omponent Need to hooe whih omponent Matrix plot Star plot et. et. et. None i ery atifatory when p i big Need to elet bet omponent to plot i.e. need to redue dimenionality Digreion on R language detail: Many multiariate routine in library ma So far only onidered data in a dataframe Multiariate method in R often need data in a matrix Ue ommand uh a a.matrix(.) rbind(.) bind(.) Whih reate matrie (ee help) Prinipal Component Analyi (PCA) Tehnique for finding whih linear ombination of ariable ontain mot information. Produe a new oordinate ytem Plot on the firt few omponent are like to how truture in data (i.e. information) Example: Iri data 5 > library(ma) > library(mass) > par(mfrow=(2,2)) > data(iri) > attah(iri) > ir<-bind(sepal.length, Sepal.Width, Petal.Length, + Petal.Width) > ir.pa<-prinomp(ir) > plot(ir.pa) > ir.p<-predit(ir.pa) > plot(ir.pa$ore[,1:2]) > plot(ir.pa$ore[,2:3]) > plot(ir.pa$ore[,3:4]) Thi reate a matrix ir of the iri data, perform pa, ue the generi predit funtion to alulate the oordinate of the data on the prinipal omponent and plot the firt three pair of omponent 6 1

2 7 8 Show importane of eah omponent:- mot information in firt omponent Variane Comp Comp.3 Comp.4 Comp mot information in thi plot Can detet at leat two eparate group in data and maybe Comp Can detet at leat two eparate group in data and maybe one group diide into two?? Can interpret prinipal omponent a refleting feature in the data by examining loading away from the main theme of oure ee example in note. Prinipal omponent analyi i a ueful bai tool for inetigating data truture and reduing dimenionality Diriminant Analyi Key problem i to ue multiariate data on different type of objet to laify future oberation. e.g. the iri flower are atually from 3 different peie (50 of eah) What ombination of epal & petal length & width are mot ueful in ditinguihing between the peie and for laifying new ae e.g. onider a plot of petal length width Firt et up a etor to label the three arietie a or or > ir.peie<-fator((rep("",50), + rep("",50),rep("",50))) Then reate a matrix with the petal meaurement > petal<-bind(petal.length, + Petal.Width) Then plot the data with the label > plot(petal,type="n") > text(petal, + label=a.harater(ir.peie)) 2

3 Petal.Width Informally we an ee ome eparation between the peie and if a new oberation fell in thi region it hould be laified a type & here a type & here a type Petal.Width Howeer, ome milaifiation here between and Petal.Length Petal.Length Thi method ue jut petal length & width make ome mitake Could we do better with all meaurement? linear diriminant analyi (LDA) will gie the bet method when boundarie between region are traight line And quadrati diriminant analyi (QDA) when boundarie are quadratiure How do we ealuate how well LDA perform? Could ue rule to laify data we atually hae Can ue generi funtion predit(.) > ir.lda<- lda(ir,ir.peie) > ir.ld<- predit(ir.lda,ir) > ir.ld$la [1] [38] [75] [112] [149] Leel: Or in a table: > table(ir.peie, ir.ld$la) ir.peie Whih how that Corret laifiation rate 147/150 2 peie C laified a V 1 peie V laified a a C Howeer, thi i optimiti ( heating ) Uing ame data for alulating the lda and ealuating it performane Better would be ro-alidation Omit one oberation Calulate lda Ue lda to laify thi oberation Repeat on eah oberation in turn Alo better would be a randomization tet Randomly permute the peie label 3

4 19 20 Ue ample(ir.peie) to permute label Note:- ampling without replaement > randompeie<-ample(ir.peie) > irrand.lda<-lda(ir,randompeie) > irrand.ld<-predit(irrand.lda,ir) > table(randompeie,irrand.ld$la) randompeie Whih how that only 70 out of 150 would be orretly laified (ompare 147 out of 150) Thi ould be repeated many time and the permutation ditribution of the orret laifiation rate obtained. (or tritly the randomization ditribution ) The obered rate of 147/150 would be in the extreme tail of the ditribution i.e. the obered rate of 147/150 i muh higher than ould our by hane General Comment If we hae high number of dimenion & mall number of point then alway eay to get near perfet dirimination A randomization tet will how if a high laifiation rate i a reult of a real differene between ae or jut geometry. e.g. 2 group, 2 dimenion 3 point alway perfet 4 point 75% hane of perfet dirimination 3 dimenion alway perfet with 2 group 4 point 21 To etimate the true laifiation rate we hould apply the rule to new data e.g. to ontrut the rule on a random ample and apply it to the other oberation > amp<- (ample(1:50,25), + ample(51:100,25), ample(101:150,25)) amp will ontain 25 number from 1 to from 51 to from 101 to > amp 23 [1] [20] [39] [58] So ir[amp,]will hae jut thee ae With 25 from eah peie ir[-amp,]will hae the other Ue ir[amp,] to ontrut the lda and then predit on ir[-amp,] > iramp.lda<lda(ir[amp,],ir.peie[amp]) > iramp.ld<-predit(iramp.lda, ir[- amp,]) > table(ir.peie[-amp], iramp.ld$la) So rule laifie orretly 71 out of 75 Other example in note 24 4

5 25 26 Summary PCA wa introdued Idea of dirimination & laifiation with lda and qda outlined Idea of uing analye to predit illutrated Taking random permutation & random ample illutrated Predition and random ample will be ued in other method for dirimination & laifiation uing neural network et

Basic Encoding Techniques

Basic Encoding Techniques Bai Enoding Tehnique Signal Enoding, Spread Spetrum Chapter 7 Digital data to analog ignal Amplitude-hift keying (ASK) Amplitude differene of arrier frequeny Frequeny-hift keying (FSK) Frequeny differene

More information

Lab 4: The transformer

Lab 4: The transformer Lab 4: The tranformer ELEC 305 July 8 05 Read thi lab before your lab eriod and anwer the quetion marked a relaboratory. You mut how your re-laboratory anwer to the TA rior to tarting the lab. It i a long

More information

Filters. Passive Filters

Filters. Passive Filters Filter Paive Filter A filter i a iruit that i deigned to pa ignal with deired frequenie and rejet or attenuate other. A filter i a paive filter if it onit of only paive element, L, and C. A lowpa filter

More information

Çankaya University ECE Department ECE 376

Çankaya University ECE Department ECE 376 Çankaya Univerity ECE Department ECE 36 Student Name : Student Numer : Open oure exam Duration : 2 hour Quetion. (3 Point) 55 Mit/e inary meage ignal i given. We plan to hire a hannel with a andwidth MHz

More information

High Speed and Power Efficient Compression of Partial Products and Vectors

High Speed and Power Efficient Compression of Partial Products and Vectors Journal of lgorithm and Optimization Ot. 2013, Vol. 1 I. 1, PP. 39-54 High Speed and Power Effiient ompreion of Partial Produt and Vetor hiuwei Pan 1, Zhao Wang 2, arl Sehen 3 1, 2, 3 Univerity of Texa

More information

(a) frequency (b) mode (c) histogram (d) standard deviation (e) All the above measure

(a) frequency (b) mode (c) histogram (d) standard deviation (e) All the above measure MT143 Introductory Statitic I Exercie on Exam 1 Topic Exam 1 will ocu on chapter 2 rom the textbook. Exam will be cloed book but you can have one page o note. There i no guarantee that thee exercie will

More information

Efficient FIR Filter Architectures Suitable for FPGA Implementation

Efficient FIR Filter Architectures Suitable for FPGA Implementation Effiient FIR Filter Arhiteture Suitable for FPGA Implementation Joeph B. Evan Teleommuniation & Information Siene Laboratory epartment of Eletrial & Computer Engineering Univerity of Kana Lawrene, KS 6645-8

More information

Mechatronics Laboratory Assignment 5 Motor Control and Straight-Line Robot Driving

Mechatronics Laboratory Assignment 5 Motor Control and Straight-Line Robot Driving Mechatronic Laboratory Aignment 5 Motor Control and Straight-Line Robot Driving Recommended Due Date: By your lab time the week of March 5 th Poible Point: If checked off before your lab time the week

More information

Detection of Several Flicker Sources Using d-q Algorithm and Flicker Power

Detection of Several Flicker Sources Using d-q Algorithm and Flicker Power 2012, TextRoad Publiation ISSN 2090-404 Journal of Basi and Applied Sientifi Researh www.textroad.om Detetion of Seeral Fliker Soures Using d-q Algorithm and Fliker Power Jalal Khodaparast, Ali Dastfan

More information

Lesson 7: Anti- Aliasing Filtering

Lesson 7: Anti- Aliasing Filtering /5/06 Leon 7: nti- liaing Filtering ET 38b Sequential Control and Data quiition Department o Tehnology Leon 7_et38b.pptx Learning Objetie ter thi preentation you will be able to: Explain why anti-aliaing

More information

1) Design a second order low pass filter with a cutoff frequency of 1 khz.

1) Design a second order low pass filter with a cutoff frequency of 1 khz. ECE 44 Filter Leture and Homework 4 Solution FILTE LECTUE ) Deign a eond order low pa ilter with a uto requeny o khz eond order ilter ha the pole at angle o + and 45 degree rom the negative real axi, whih

More information

Identification of Image Noise Sources in Digital Scanner Evaluation

Identification of Image Noise Sources in Digital Scanner Evaluation Identification of Image Noie Source in Digital Scanner Evaluation Peter D. Burn and Don William Eatman Kodak Company, ocheter, NY USA 4650-95 ABSTACT For digital image acquiition ytem, analyi of image

More information

Adaptive Space/Frequency Processing for Distributed Aperture Radars

Adaptive Space/Frequency Processing for Distributed Aperture Radars Adaptive Space/Frequency Proceing for Ditributed Aperture Radar Raviraj Adve a, Richard Schneible b, Robert McMillan c a Univerity of Toronto Department of Electrical and Computer Engineering 10 King College

More information

Reasons for Choosing Encoding Techniques. Signal Encoding Techniques. Reasons for Choosing Encoding Techniques. Signal Encoding Criteria

Reasons for Choosing Encoding Techniques. Signal Encoding Techniques. Reasons for Choosing Encoding Techniques. Signal Encoding Criteria Reaon for Chooing Enoding Tehnique Signal Enoding Tehnique Chapter 6 Digital data, digital ignal Equipment le omplex and expenive than digital-to-analog modulation equipment Analog data, digital ignal

More information

Adaptive Groundroll filtering

Adaptive Groundroll filtering Adaptive Groundroll filtering David Le Meur (CGGVerita), Nigel Benjamin (CGGVerita), Rupert Cole (Petroleum Development Oman) and Mohammed Al Harthy (Petroleum Development Oman) SUMMARY The attenuation

More information

Frequency Calibration of A/D Converter in Software GPS Receivers

Frequency Calibration of A/D Converter in Software GPS Receivers Frequency Calibration of A/D Converter in Software GPS Receiver L. L. Liou, D. M. Lin, J. B. Tui J. Schamu Senor Directorate Air Force Reearch Laboratory Abtract--- Thi paper preent a oftware-baed method

More information

/02/$ IEEE 272

/02/$ IEEE 272 Analyi and Modeling of Multiple-Input Multiple-Output (MIMO) Radio Channel Baed on Outdoor Meaurement Conduted at 2.GHz for Fixed BWA Appliation P. Soma, D.S. Baum, V. Ereg, R. Krihnamoorthy and A.J. Paulraj

More information

A New Model for IPMSM with Rotating High Frequency Voltage Injection

A New Model for IPMSM with Rotating High Frequency Voltage Injection A New Model for PMSM with Rotating High Frequeny oltage njetion S. Damkhi, MS. Nait Said,and N.Nait Said 3 Department of Eletrial Engineering, Batna Univerity,Algeria ihemd@ymail.om,n_naitaid@yahoo.om

More information

On-line Calibration of Lossless Current Sensing

On-line Calibration of Lossless Current Sensing On-line Calibration of Lole Current Sening Yang Zhang, egan Zane, Dragan Makimovi Colorado Power Eletroni Center ECE Department, Univerity of Colorado Boulder, CO 80309-0425 {yyzhang, zane, makimov}@olorado.edu

More information

Multi-sensor Remote Sensing Image Fusion Based On Retina-Inspired Model

Multi-sensor Remote Sensing Image Fusion Based On Retina-Inspired Model 009 IEEE Sympoium on Indutrial Eletroni and Appliation (ISIEA 009), Otober 4-6, 009, Kuala Lumpur, Malayia Multi-enor Remote Sening Image Fuion Baed On Retina-Inpired Model Haan Ghaemian Shool of Eletrial

More information

Frequency-domain Pre-equalization Transmit Diversity for MC-CDMA

Frequency-domain Pre-equalization Transmit Diversity for MC-CDMA Frequeny-domain Pre-equalization ranmit Diverity for MC-CDMA iromihi omeba, Shinuke akaoka, and Fumiyuki Adahi Dept. of Eletrial and Communiation Engineering, Graduate Shool of Engineering, ohoku Univerity

More information

IE 361 Module 6. Gauge R&R Studies Part 2: Two-Way ANOVA and Corresponding Estimates for R&R Studies

IE 361 Module 6. Gauge R&R Studies Part 2: Two-Way ANOVA and Corresponding Estimates for R&R Studies IE 361 Module 6 Gauge R&R Studie Part 2: Two-Way ANOVA and Correponding Etimate for R&R Studie Reading: Section 2.2 Statitical Quality Aurance for Engineer (Section 2.4 of Revied SQAME) Prof. Steve Vardeman

More information

The Central Limit Theorem

The Central Limit Theorem Objective Ue the central limit theorem to olve problem involving ample mean for large ample. The Central Limit Theorem In addition to knowing how individual data value vary about the mean for a population,

More information

(12) Patent Application Publication (10) Pub. No.: US 2016/ A1

(12) Patent Application Publication (10) Pub. No.: US 2016/ A1 (19) United tate (12) Patent Appliation Publiation (10) Pub. No.: U 2016/0364365A1 NOGA et al. U 20160364365A1 (43) Pub. Date: De. 15, 2016 (54) (71) (72) (21) (22) APPARATU FOR EFFICIENT FREQUENCY MEAUREMENT

More information

MODELING SIMULATION AND HARMONIC ANALYSIS OF A SERIES RESONANT INVERTER FEEDING RL LOAD: CONSIDERING TRANSFORMER PARAMETERS

MODELING SIMULATION AND HARMONIC ANALYSIS OF A SERIES RESONANT INVERTER FEEDING RL LOAD: CONSIDERING TRANSFORMER PARAMETERS Abtrat Journal of Reearh in Engineering and Applied Siene MODEING SIMUATION AND HARMONI ANAYSIS OF A SERIES RESONANT INVERTER FEEDING R OAD: ONSIDERING TRANSFORMER PARAMETERS R K Kehri and A. B. hattopadhyay,

More information

A Faster and Accurate Method for Spectral Testing Applicable to Noncoherent Data

A Faster and Accurate Method for Spectral Testing Applicable to Noncoherent Data A Fater and Accurate ethod for Spectral Teting Applicable to Noncoherent Data inhun Wu 1,2, Degang Chen 2, Guican Chen 1 1 School of Electronic and Information Engineering Xi an Jiaotong Univerity, Xi

More information

ACTIVE VIBRATION CONTROL OF AN INTERMEDIATE MASS: VIBRATION ISOLATION IN SHIPS

ACTIVE VIBRATION CONTROL OF AN INTERMEDIATE MASS: VIBRATION ISOLATION IN SHIPS ACTIVE VIBRATION CONTROL OF AN INTERMEDIATE MASS: VIBRATION ISOLATION IN SHIPS Xun Li, Ben S. Cazzolato and Colin H. Hansen Shool of Mehanial Engineering, University of Adelaide Adelaide SA 5005, Australia.

More information

FM Range Calculation

FM Range Calculation FM Range Calculation Thi heet i to etimate of the range that can be epected from an FM or ASK modulated ytem. Chri Haji-Michael www.unhadow.co.uk It ue a modified-verion of the Fri tranmiion equation.

More information

SELF-ASSEMBLY FOR DISCREET, FAULT-TOLERANT, AND SCALABLE COMPUTATION ON INTERNET-SIZED DISTRIBUTED NETWORKS. Yuriy Brun

SELF-ASSEMBLY FOR DISCREET, FAULT-TOLERANT, AND SCALABLE COMPUTATION ON INTERNET-SIZED DISTRIBUTED NETWORKS. Yuriy Brun SELF-ASSEMBLY FOR DISCREET, FAULT-TOLERANT, AND SCALABLE COMPUTATION ON INTERNET-SIZED DISTRIBUTED NETWORKS by Yuriy Brun A Diertation Preented to the FACULTY OF THE GRADUATE SCHOOL UNIVERSITY OF SOUTHERN

More information

Analysis. Control of a dierential-wheeled robot. Part I. 1 Dierential Wheeled Robots. Ond ej Stan k

Analysis. Control of a dierential-wheeled robot. Part I. 1 Dierential Wheeled Robots. Ond ej Stan k Control of a dierential-wheeled robot Ond ej Stan k 2013-07-17 www.otan.cz SRH Hochchule Heidelberg, Mater IT, Advanced Control Engineering project Abtract Thi project for the Advanced Control Engineering

More information

Implementing a Real-Time Beamformer on an FPGA Platform We designed a flexible QRD-based beamforming engine using Xilinx System Generator.

Implementing a Real-Time Beamformer on an FPGA Platform We designed a flexible QRD-based beamforming engine using Xilinx System Generator. Implementing a Real-Time Beamformer on an FPGA Platform We deigned a fleible QRD-baed beamforming engine uing Xilin Sytem Generator. by Chri Dik Xilin Chief DSP Arhitet Company: Xilin hri.dik@ilin.om Fred

More information

The Multi-Frequency Small-Signal Model for Buck and Multiphase Interleaving Buck Converters

The Multi-Frequency Small-Signal Model for Buck and Multiphase Interleaving Buck Converters The Multi-Frequeny Small-Signal Model for Bu and Multihae Interleaing Bu Conerter Yang Qiu, Ming Xu, Kaiwei Yao, Juanjuan Sun, and Fred C Lee Center for Power Eletroni Sytem irginia Polytehni Intitute

More information

SETTING UP A GRID SIMULATOR A. Notholt 1, D. Coll-Mayor 2, A. Engler 1

SETTING UP A GRID SIMULATOR A. Notholt 1, D. Coll-Mayor 2, A. Engler 1 SETTING U A GRID SIMULATOR A. Notholt, D. CollMayor 2, A. Engler Intitut für Solare Energieverorgungtechnik (ISET). Königtor 9. D349 Kael anotholt@iet.unikael.de 2 Department of hyic. Univerity of Balearic

More information

Hashiwokakero. T. Morsink. August 31, 2009

Hashiwokakero. T. Morsink. August 31, 2009 Hahiwokakero T. Morink Augut 31, 2009 Content 1 Introduction 3 2 What i Hahiwokakero? 3 2.1 The rule............................. 3 2.2 Eay olving tatement..................... 4 3 Building an Own Solver

More information

University of Bristol - Explore Bristol Research. Peer reviewed version. Link to published version (if available): /GLOCOM.2006.

University of Bristol - Explore Bristol Research. Peer reviewed version. Link to published version (if available): /GLOCOM.2006. Feng, Q., Tameh, EK., Nix, AR., & MGeehan, J. (6). Modelling the likelihood of line-of-ight for air-to-ground radio propagation in urban environment. IEEE Global Teleommuniation Conferene, 6 (GLOBECOM

More information

Experiment 4: Active Filters

Experiment 4: Active Filters Experiment : Active Filter In power circuit filter are implemented with ductor and capacitor to obta the deired filter characteritic. In tegrated electronic circuit, however, it ha not been poible to realize

More information

Produced in cooperation with. Revision: May 26, Overview

Produced in cooperation with. Revision: May 26, Overview Lab Aignment 6: Tranfer Function Analyi Reviion: May 6, 007 Produced in cooperation with www.digilentinc.com Overview In thi lab, we will employ tranfer function to determine the frequency repone and tranient

More information

EE (082) Chapter IV: Angle Modulation Lecture 21 Dr. Wajih Abu-Al-Saud

EE (082) Chapter IV: Angle Modulation Lecture 21 Dr. Wajih Abu-Al-Saud EE 70- (08) Chapter IV: Angle Modulation Leture Dr. Wajih Abu-Al-Saud Effet of Non Linearity on AM and FM signals Sometimes, the modulated signal after transmission gets distorted due to non linearities

More information

ECE451/551 Matlab and Simulink Controller Design Project

ECE451/551 Matlab and Simulink Controller Design Project ECE451/551 Matlab and Simulink Controller Deign Project Aim: Ue Matlab and Simulink to build and imulate variou control configuration a dicued in the Modern Control ection (chapter 18-23) in the intructor

More information

Active vibration isolation for a 6 degree of freedom scale model of a high precision machine

Active vibration isolation for a 6 degree of freedom scale model of a high precision machine Active vibration iolation for a 6 degree of freedom cale model of a high preciion machine W.B.A. Boomma Supervior Report nr : Prof. Dr. Ir. M. Steinbuch : DCT 8. Eindhoven Univerity of Technology Department

More information

Feedback Control Design of Off-line Flyback Converter

Feedback Control Design of Off-line Flyback Converter Application Note Edwin Wang AN7 Jun 24 Feedback Control Deign of Off-line Flyback Converter Abtract Controlling the feedback of off-line flyback converter ha often perplexed power engineer becaue it involve

More information

EEEE 480 Analog Electronics

EEEE 480 Analog Electronics EEEE 480 Analog Electronic Lab #1: Diode Characteritic and Rectifier Circuit Overview The objective of thi lab are: (1) to extract diode model parameter by meaurement of the diode current v. voltage characteritic;

More information

Detecting Moving Targets in SAR Via Keystoning and Phase Interferometry

Detecting Moving Targets in SAR Via Keystoning and Phase Interferometry 5 The MITRE Corporation. All rights reserved. Approved for Publi Release; Distribution Unlimited. Deteting Moving Targets in SAR Via Keystoning and Phase Interferometry Dr. P. K. Sanyal, Dr. D. M. Zasada,

More information

Lab 7 Rev. 2 Open Lab Due COB Friday April 27, 2018

Lab 7 Rev. 2 Open Lab Due COB Friday April 27, 2018 EE314 Sytem Spring Semeter 2018 College of Engineering Prof. C.R. Tolle South Dakota School of Mine & Technology Lab 7 Rev. 2 Open Lab Due COB Friday April 27, 2018 In a prior lab, we et up the baic hardware

More information

AN EVALUATION OF DIGILTAL ANTI-ALIASING FILTER FOR SPACE TELEMETRY SYSTEMS

AN EVALUATION OF DIGILTAL ANTI-ALIASING FILTER FOR SPACE TELEMETRY SYSTEMS AN EVALUATION OF DIGILTAL ANTI-ALIASING FILTER FOR SPACE TELEMETRY SYSTEMS Alion de Oliveira Morae (1), Joé Antonio Azevedo Duarte (1), Sergio Fugivara (1) (1) Comando-Geral de Tecnologia Aeroepacial,

More information

A Digital Controller Design Method to Improve Performance of PFC Converter *

A Digital Controller Design Method to Improve Performance of PFC Converter * Energy an Power Engineering, 03, 5, 6-66 oi:0.436/epe.03.54b03 Publihe Online July 03 (http://www.irp.org/journal/epe) A Digital Controller Deign Metho to Improve Performane of PFC Converter * Xiaoqiang

More information

Lecture 22: Digital Transmission Fundamentals

Lecture 22: Digital Transmission Fundamentals EE 400: Communiation Networks (0) Ref: A. Leon Garia and I. Widjaja, Communiation Networks, 2 nd Ed. MGraw Hill, 2006 Latest update of this leture was on 30 200 Leture 22: Digital Transmission Fundamentals

More information

Sampling Theory MODULE XIII LECTURE - 41 NON SAMPLING ERRORS

Sampling Theory MODULE XIII LECTURE - 41 NON SAMPLING ERRORS Sampling Theory MODULE XIII LECTURE - 41 NON SAMPLING ERRORS DR. SHALABH DEPARTMENT OF MATHEMATICS AND STATISTICS INDIAN INSTITUTE OF TECHNOLOG KANPUR 1 It i a general aumption in ampling theory that the

More information

Topology in Circuit Analysis

Topology in Circuit Analysis Topology in Circuit Analyi Many dierent circuit actually operate the ame Can reduce a circuit to a "graph" Graph only how the branche, not the device Two Circuit are aid to have the ame topology When the

More information

MULTI-FREQUENCY EDDY CURRENT TESTING OF FERROMAGNETIC WELDS

MULTI-FREQUENCY EDDY CURRENT TESTING OF FERROMAGNETIC WELDS U-FQUCY DDY CU SG OF FOGC WDS ODUCO C. W. Gilstad,. F. Dersh and. Deale David aylor esearh Center etals and Welding Division nnapolis D, 2142-567 Single frequeny phase analysis eddy urrent tehniques have

More information

1 ft 1 ft border tile

1 ft 1 ft border tile Application 1. a. How many 1-foot-quare border tile do you need to urround a pool that i 10 feet long and 5 feet wide? b. Write an equation for the number of border tile needed to urround a pool L feet

More information

N1 End-of-unit Test 2

N1 End-of-unit Test 2 N End-of-unit Test 2 a Draw a irle around all the numers that divide y with no remainder. 20 2 0 Draw a irle around all the numers that divide y with no remainder. 20 2 0 Draw a irle around all the numers

More information

Interference mitigation by distributed beam forming optimization

Interference mitigation by distributed beam forming optimization English Interferene mitigation by distributed beam forming optimization Matthias Kashub, Christian M. Blankenhorn, Christian M. Mueller and Thomas Werthmann Abstrat Inter-ell interferene is a major issue

More information

TRANSISTORS: DYNAMIC CIRCUITS. Introduction

TRANSISTORS: DYNAMIC CIRCUITS. Introduction TRANSISTORS: DYNAMIC CIRCUITS Introdution The point of biasing a iruit orretly is that the iruit operate in a desirable fashion on signals that enter the iruit. These signals are perturbations about the

More information

Demonstration of Measurement Derived Model-Based Adaptive Wide-Area Damping Controller on Hardware Testbed USA. China USA

Demonstration of Measurement Derived Model-Based Adaptive Wide-Area Damping Controller on Hardware Testbed USA. China USA 2, rue d Artois, F-758 PARIS CIGRE US National Committee http : //www.igre.org 25 Grid of the Future Symposium Demonstration of Measurement Derived Model-Based Adaptive Wide-Area Damping Controller on

More information

Design, Realization, and Analysis of PIFA for an RFID Mini-Reader

Design, Realization, and Analysis of PIFA for an RFID Mini-Reader Deign, Realization, and Analyi of PIFA for an RFID Mini-Reader SUNG-FEI YANG ; TROY-CHI CHIU ; CHIN-CHUNG NIEN Indutrial Technology Reearch Intitute (ITRI) Rm. 5, Bldg. 5, 95, Sec., Chung Hing Rd., Chutung,

More information

V is sensitive only to the difference between the input currents,

V is sensitive only to the difference between the input currents, PHYSICS 56 Experiment : IC OP-Amp and Negative Feedback In thi experiment you will meaure the propertie of an IC op-amp, compare the open-loop and cloed-loop gain, oberve deterioration of performance when

More information

Previous lecture. Lecture 5 Control of DVD reader. TheDVD-reader tracking problem. Can you see the laser spot?

Previous lecture. Lecture 5 Control of DVD reader. TheDVD-reader tracking problem. Can you see the laser spot? Lecture 5 Control of DVD reader Previou lecture Focu control Radial control (Track following) Lecture 4: Specification in frequency domain Loop haping deign Problem formulation Modeling Specification Focu

More information

Version of 7. , using 30 points from 5 rad/s to 5 krad/s. Paste your plot below. Remember to label your plot.

Version of 7. , using 30 points from 5 rad/s to 5 krad/s. Paste your plot below. Remember to label your plot. Version 1.2 1 of 7 Your Name Passive and Ative Filters Date ompleted PELAB MATLAB = 1000 s + 1000, using 30 points from 5 rad/s to 5 krad/s. Paste your plot below. emember to label your plot. 1. reate

More information

Proceedings of Meetings on Acoustics

Proceedings of Meetings on Acoustics Matui et al. Proeeding of Meeting on Aouti Volume 19, 013 http://aoutialoiety.org/ ICA 013 Montreal Montreal, Canada - 7 June 013 Signal Proeing in Aouti Seion 1pSP: Miellaneou Topi in Signal Proeing in

More information

and division (stretch).

and division (stretch). Filterg AC signals Topi areas Eletrial and eletroni engeerg: AC Theory. Resistane, reatane and impedane. Potential divider an AC iruit. Low pass and high pass filters. Mathematis: etor addition. Trigonometry.

More information

10000 for S-Band (3.0 GHz) Cu at room temp. Cu at 80K Cu at 4K Sputtered Nb3Sn at 4.5K Bulk Nb at 1.8K. ring length [m]

10000 for S-Band (3.0 GHz) Cu at room temp. Cu at 80K Cu at 4K Sputtered Nb3Sn at 4.5K Bulk Nb at 1.8K. ring length [m] Parameter Evaluation for Mirowave Undulator Sheme M. Seidel April, 2 Abtrat An undulator an be realized not only by tati magneti eld, but alo by an eletromagneti wave in a waveguide. The major advantage

More information

EDGE AND LAPLACE BASED RESTORATION OF HAZY IMAGES

EDGE AND LAPLACE BASED RESTORATION OF HAZY IMAGES www.ijrar.om INTERNATIONAL JOURNAL OF RESEARCH IN COMPUTER APPLICATIONS AND ROBOTICS ISSN 2320-7345 EDGE AND LAPLACE BASED RESTORATION OF HAZY IMAGES 1 Priya Singh Patel, 2 Prof. Manisha Rathore Abstrat:

More information

Calculation of Power Transformer Short-current Force Hongkui LI

Calculation of Power Transformer Short-current Force Hongkui LI International Power, Electronic and Material Engineering Conference (IPEMEC 2015) Calculation of Power Tranformer Short-current Force Hongkui LI School of cience,shenyang Ligong Unierity,Shenyang, 110159,China

More information

Prediction Method for Channel Quality Indicator in LEO mobile Satellite Communications

Prediction Method for Channel Quality Indicator in LEO mobile Satellite Communications Predition Method for Channel Quality Indiator in LEO mobile Satellite Communiations Yadan Zheng *, Mingke Dong *, Wei Zheng *, Ye Jin *, Jianjun Wu * * Institution of Advaned Communiations, Peking University,

More information

IMAGE RECONSTRUCTION FROM OMNI-DIRECTIONAL CAMERA Kai Guo and Zhuang Li

IMAGE RECONSTRUCTION FROM OMNI-DIRECTIONAL CAMERA Kai Guo and Zhuang Li IMAGE RECONSTRUCTION FROM OMNI-DIRECTIONAL CAMERA Kai Guo and Zhuang Li De 15, 2007 Boston University Department of Eletrial and Computer Engineering Tehnial report No. ECE-2007-06 BOSTON UNIVERSITY IMAGE

More information

EFFECT OF THE FEEDER CABLE AND TRANSFORMER IMPEDANCE ON THE MECHANICAL OUTPUT CHARACTERISTIC OF THE INDUCTION MOTOR

EFFECT OF THE FEEDER CABLE AND TRANSFORMER IMPEDANCE ON THE MECHANICAL OUTPUT CHARACTERISTIC OF THE INDUCTION MOTOR Intenive Programme Renewable Energy Source May 2011, Železná Ruda-Špičák, Univerity of Wet Bohemia, Czech Republic EFFECT OF THE FEEDER CABLE AND TRANSFORMER IMPEDANCE ON THE MECHANICAL OUTPUT CHARACTERISTIC

More information

Considerations and Challenges in Real Time Locating Systems Design

Considerations and Challenges in Real Time Locating Systems Design Considerations and Challenges in Real Time Loating Systems Design Dr. Brian Gaffney DeaWave Ltd. Email: brian.gaffney@deawave.om Abstrat Real Time Loating Systems (RTLS) are a ombination of hardware and

More information

DSP First Lab 05: FM Synthesis for Musical Instruments - Bells and Clarinets

DSP First Lab 05: FM Synthesis for Musical Instruments - Bells and Clarinets DSP First Lab 05: FM Synthesis for Musial Instruments - Bells and Clarinets Pre-Lab and Warm-Up: You should read at least the Pre-Lab and Warm-up setions of this lab assignment and go over all exerises

More information

Family Edition. Components. Substitute Markers

Family Edition. Components. Substitute Markers Family Edition Component 2 Game Board Extenion (with additional pace on both ide) Round Counter Rooter 5 Begging Marker Game Board (with action pace) 37 Food Marker 7 5 Food Marker 4 Starting Houe 2 Wood/Clay

More information

Impact of GLONASS pseudorange inter-channel biases on satellite clock corrections

Impact of GLONASS pseudorange inter-channel biases on satellite clock corrections GPS Solut (2014) 18:323 333 DOI 10.1007/10291-014-0371-y REVIEW ARTICLE Impact of GLONASS peudorange inter-channel biae on atellite clock correction Weiwei Song Wenting Yi Yidong Lou Chuang Shi Yibin Yao

More information

A Dual-Threshold ATI-SAR Approach for Detecting Slow Moving Targets

A Dual-Threshold ATI-SAR Approach for Detecting Slow Moving Targets A Dual-Threshold ATI-SAR Approah for Deteting Slow Moving Targets Yuhong Zhang, Ph. D., Stiefvater Consultants Abdelhak Hajjari, Ph. D. Researh Assoiates for Defense Conversion In. Kyungjung Kim, Ph. D.,

More information

Supervised Information-Theoretic Competitive Learning by Cost-Sensitive Information Maximization

Supervised Information-Theoretic Competitive Learning by Cost-Sensitive Information Maximization BIC, 9 Aug- ept upervied Information-Theoretic Competitive Learning by Cot-enitive Information Maximization Ryotaro Kamimura Information cience Laboratory, Tokai Univerity, 7 Kitakaname Hiratuka Kanagawa

More information

SCK LAB MANUAL SAMPLE

SCK LAB MANUAL SAMPLE SCK LAB MANUAL SAMPLE VERSION 1.2 THIS SAMPLE INCLUDES: TABLE OF CONTENTS TWO SELECTED LABS FULL VERSION IS PROVIDED FREE WITH KITS Phone: +92 51 8356095, Fax: +92 51 8311056 Email: info@renzym.com, URL:www.renzym.com

More information

A COMPARISON OF METHODS FOR EVALUATING THE TEST ZONE PERFORMANCE OF ANECHOIC CHAMBERS DESIGNED FOR TESTING WIRELESS DEVICES

A COMPARISON OF METHODS FOR EVALUATING THE TEST ZONE PERFORMANCE OF ANECHOIC CHAMBERS DESIGNED FOR TESTING WIRELESS DEVICES A COMPARISON OF METHODS FOR EVALUATING THE TEST ZONE PERFORMANCE OF ANECHOIC CHAMBERS DESIGNED FOR TESTING WIRELESS DEVICES Jame D. Huff John C. Mantovani Carl W. Sirle The Howland Company, Inc. 4540 Atwater

More information

Investigate index notation and represent whole numbers as products of powers of prime numbers (ACMNA149) a) 36 b) 100 c) 196 d) 441

Investigate index notation and represent whole numbers as products of powers of prime numbers (ACMNA149) a) 36 b) 100 c) 196 d) 441 Teaher Notes 7 8 9 10 11 12 Aim TI-Nspire CAS Investigation Student 120min The number 12 has six fators: 1, 2, 3, 4, 6 and 12. The number 36 has more fators. Whih number would have the greatest number

More information

BPSK so that we have a discrete set of RF signals. t)cos(

BPSK so that we have a discrete set of RF signals. t)cos( BPSK. BPSK Introdution Reall that the most general modulation has the form s( t) a( t)os[ t ( t)]. We remared earlier that phase modulation was not an effetive way to implement analog ommuniation, one

More information

A Design of Sine-wave Oscillator Based on an Improved OP-amp Differentiator Zinan Zhou

A Design of Sine-wave Oscillator Based on an Improved OP-amp Differentiator Zinan Zhou 6th International onference on Mechatronic Material Biotechnology and Environment (IMMBE 6) A Deign of Sine-wave Ocillator Baed on an Imroved OP-am Differentiator Zinan Zhou Deartment of Jiangu Union echnical

More information

Frequency-Domain based Single-Carrier Waveform Design through Precoder

Frequency-Domain based Single-Carrier Waveform Design through Precoder Frequeny-Domain baed Single-Carrier Waveform Deign through Preoder Fumiyuki Adahi* and Amnart Boonkajay Department of Communiation Engineering, Graduate Shool of Engineering, ohoku Univerity 6-6-5 Aza-Aoba,

More information

Before the beginning of the Q wave At the top of the R wave After the end of the S wave

Before the beginning of the Q wave At the top of the R wave After the end of the S wave 334 AcqKnowledge 4 Software Guide Detect and Claify Heartbeat Thi robut QRS detector i tuned for human ECG Lead II ignal. It attempt to locate QRS complexe and place an event near the center of each QRS

More information

CHAPTER 2 WOUND ROTOR INDUCTION MOTOR WITH PID CONTROLLER

CHAPTER 2 WOUND ROTOR INDUCTION MOTOR WITH PID CONTROLLER 16 CHAPTER 2 WOUND ROTOR INDUCTION MOTOR WITH PID CONTROLLER 2.1 INTRODUCTION Indutrial application have created a greater demand for the accurate dynamic control of motor. The control of DC machine are

More information

Characterization of the dielectric properties of various fiberglass/epoxy composite layups

Characterization of the dielectric properties of various fiberglass/epoxy composite layups Charaterization of the dieletri properties of various fiberglass/epoxy omposite layups Marotte, Laurissa (University of Kansas); Arnold, Emily Center for Remote Sensing of Ie Sheets, University of Kansas

More information

Experiment 8: Active Filters October 31, 2005

Experiment 8: Active Filters October 31, 2005 Experiment 8: Active Filter October 3, In power circuit filter are implemented with ductor and capacitor to obta the deired filter characteritic. In tegrated electronic circuit, however, it ha not been

More information

Deterministic Deployment for Wireless Image Sensor Nodes

Deterministic Deployment for Wireless Image Sensor Nodes Send Order for Reprint to reprint@benthamcience.ae 668 The Open Electrical & Electronic Engineering Journal, 04, 8, 668-674 Determinitic Deployment for Wirele Image Senor Node Open Acce Junguo Zhang *,

More information

> s. > s s. > s. > > > > s s. s s s s. > s s. > s s. > s. > s. > s. > s s. > s s. > s s. > s s. > s. > s. > s s. > s. > s. > s. > > s s > s > > s s

> s. > s s. > s. > > > > s s. s s s s. > s s. > s s. > s. > s. > s. > s s. > s s. > s s. > s s. > s. > s. > s s. > s. > s. > s. > > s s > s > > s s Chritma Ornament - Peace 008 by Katherine Martin Tripp Copyright Katherine Martin Tripp at www.better-cro-titch-pattern.com 0 0 0 0 0 0 DMC-890 DMC-909 DMC-70 DMC-White DMC-796 DMC-554 DMC- DMC-04 KRE-00

More information

Research Article A Hybrid Domain Degradation Feature Extraction Method for Motor Bearing Based on Distance Evaluation Technique

Research Article A Hybrid Domain Degradation Feature Extraction Method for Motor Bearing Based on Distance Evaluation Technique Hindawi International Journal of Rotating Mahinery Volume 7, Artile ID 6754, pages https://doi.org/.55/7/6754 Researh Artile A Hybrid Domain Degradation Feature Extration Method for Motor Bearing Based

More information

Velocity Propagation Between Robot Links 3/4

Velocity Propagation Between Robot Links 3/4 eloty Propagaton etween obot nk / Intrutor: Jaob oen daned obot - ME 6D - Department of Mehanal & eropae Engneerng - UC Introduton eloty Propagaton Intrutor: Jaob oen daned obot - ME 6D - Department of

More information

A 24 GHz Band FM-CW Radar System for Detecting Closed Multiple Targets with Small Displacement

A 24 GHz Band FM-CW Radar System for Detecting Closed Multiple Targets with Small Displacement A 24 GHz Band FM-CW Radar System for Deteting Closed Multiple Targets with Small Displaement Kazuhiro Yamaguhi, Mitsumasa Saito, Takuya Akiyama, Tomohiro Kobayashi and Hideaki Matsue Tokyo University of

More information

Phase-Locked Loops (PLL)

Phase-Locked Loops (PLL) Phae-Locked Loop (PLL) Recommended Text: Gray, P.R. & Meyer. R.G., Analyi and Deign of Analog Integrated Circuit (3 rd Edition), Wiley (992) pp. 68-698 Introduction The phae-locked loop concept wa firt

More information

Objectives. Presentation Outline. Digital Modulation Lecture 04

Objectives. Presentation Outline. Digital Modulation Lecture 04 Digital Modulation Leture 04 Filters Digital Modulation Tehniques Rihard Harris Objetives To be able to disuss the purpose of filtering and determine the properties of well known filters. You will be able

More information

Resonant amplifier L A B O R A T O R Y O F L I N E A R C I R C U I T S. Marek Wójcikowski English version prepared by Wiesław Kordalski

Resonant amplifier L A B O R A T O R Y O F L I N E A R C I R C U I T S. Marek Wójcikowski English version prepared by Wiesław Kordalski A B O R A T O R Y O F I N E A R I R U I T S Reonant amplifier 3 Marek Wójcikowki Englih verion prepared by Wieław Kordalki. Introduction Thi lab allow you to explore the baic characteritic of the reonant

More information

Interactive Machine Learning

Interactive Machine Learning Interactive Machine Learning Jerry Alan Fail, Dan R. Olen, Jr. Computer Science Department Brigham Young Univerity Provo, Utah 84602 {failj, olen}@c.byu.edu ABSTRACT Perceptual uer interface (PUI) are

More information

RESEARCH ON NEAR FIELD PASSIVE LOCALIZATION BASED ON PHASE MEASUREMENT TECHNOLOGY BY TWO TIMES FREQUENCY DIFFERENCE

RESEARCH ON NEAR FIELD PASSIVE LOCALIZATION BASED ON PHASE MEASUREMENT TECHNOLOGY BY TWO TIMES FREQUENCY DIFFERENCE RESEARCH ON NEAR FIED PASSIVE OCAIZATION BASED ON PHASE MEASUREMENT TECHNOOGY BY TWO TIMES FREQUENCY DIFFERENCE Xuezhi Yan, Shuxun Wang, Zhongheng Ma and Yukuan Ma College of Communication Engineering

More information

SIMULINK for Process Control

SIMULINK for Process Control SIMULINK for Proce Control Simulink for Control MATLAB, which tand for MATrix LABoratory, i a technical computing environment for high-performance numeric computation and viualization. SIMULINK i a part

More information

Fast & Accurate Algorithm for Jitter Test with a Single Frequency Test Signal

Fast & Accurate Algorithm for Jitter Test with a Single Frequency Test Signal Fat & Accurate Algorithm for Jitter Tet ith a Single Frequency Tet Signal Minhun Wu 1,2, Degang Chen 2, Jingbo Duan 2 1 Xi an Jiaotong Univerity, Xi an,. R. China 2 Ioa State Univerity, Ame, IA, USA Abtract

More information

MODAL ANALYSIS OF A BEAM WITH CLOSELY SPACED MODE SHAPES

MODAL ANALYSIS OF A BEAM WITH CLOSELY SPACED MODE SHAPES ME 164 Senior Captone Deign The Cooper Union Spring 2011 MODAL ANALYSIS O A BEAM WITH CLOSELY SPACED MODE SHAPES Eglind Myftiu The Cooper Union New York City, NY, USA ABSTRACT Thi paper invetigate the

More information

Negative to Positive CFS-244 April 19, 2004

Negative to Positive CFS-244 April 19, 2004 egative to ositive CFS-244 April 19, 2004 www.-f-systems.om ersonal ote This report has a lot of algebra and basi physis of photography in it, but it is not "roket siene." evertheless, it is quite triky

More information

California State University, Bakersfield Computer & Electrical Engineering & Computer Science ECE 3220: Digital Design with VHDL Laboratory 6

California State University, Bakersfield Computer & Electrical Engineering & Computer Science ECE 3220: Digital Design with VHDL Laboratory 6 California State Univerity, Bakerfield Computer & Electrical Engineering & Computer Science ECE 322: Digital Deign with VHDL Laboratory 6 The purpoe of thi exercie i to examine arithmetic circuit that

More information

Phase Response of VLBA 16-MHz IF Bands

Phase Response of VLBA 16-MHz IF Bands VLB TEST MEMO N ( L ^. Phae Repone of VLB 16-MHz IF Band J. S. Ulvetad 6 February 1997 1 Introduction Thi note report the reult of an invetigation of the phae repone of the 16-MHz VLBI IF bandpae of the

More information

Kalman Filtering Based Object Tracking in Surveillance Video System

Kalman Filtering Based Object Tracking in Surveillance Video System (669 -- 917) Proceeding of the 3rd (2011) CUSE International Conference Kalman Filtering Baed Object racking in Surveillance Video Sytem W.L. Khong, W.Y. Kow, H.. an, H.P. Yoong, K..K. eo Modelling, Simulation

More information