Chapter 15 Other Modifications

Size: px
Start display at page:

Download "Chapter 15 Other Modifications"

Transcription

1 Chapter 15 Other Modifications We have aready seen ways to modify a sound through either edition (see Chap. 6) or fitering (see Chap. 14). Some other changes in ampitude, time, and/or frequency might be required for anaysis or to prepare fies for broadcast. To go through some functions that change the ampitude, time, and frequency parameters of sound, we wi use the song of the bird Zonotrichia capensis, the sound of the A-fat tuning fork, the voice of chid saying heo, the vocaizations of the South-American dart poison frog Aobates femorais, and the caing song of the cicada Cicada orni: data(tico) tuningfork <- readwave("sampe/tuning-fork.wav") heo <- readwave("sampe/heo.wav") femo <- readwave("sampe/aobates_femorais.wav") data(orni) 15.1 Setting the Ampitude Enveope The ampitude enveope can be changed through edition functions, as detaied in Chap. 6, but a fancy change coud be to create a sort of sound chimera by appying the ampitude enveope of one sound to another one, such that the second sound woud have the ampitude enveope of the first sound. This kind of mix, which can be usefu in psychoacoustic or bioacoustic experiments, can be performed with the seewave function setenv(). In the foowing exampe, we appy the enveope of tico to tuningfork so that the origina ampitude enveope of tuningfork is drasticay changed with the four-note ampitude enveope of tico. In this particuar case, this manipuation coud be used in a payback experiment where the frequency properties of the tico Springer Internationa Pubishing AG, part of Springer Nature 2018 J. Sueur, Sound Anaysis and Synthesis with R, UseR!, 465

2 Other Modifications sound woud be tested. The code starts with a downsamping of tuningfork so that both objects have a simiar samping frequency f s = 22,050 Hz: f <- tico@samp.rate tuningfork.u <- resamp(tuningfork, g=f) We then ca setenv() which has two main arguments: the first argument, wave1, is the input sound, and the second argument, wave2, is the sound which ampitude enveope wi be used as a reference. The resut is visuaized with spectro() (Fig. 15.1): Fig Changing the ampitude enveope with setenv(). The ampitude enveope of tico was appied totuningfork. Fourier window size = 512 sampes, overap = 0%, Hanning window

3 15.2 Echoes and Reverberation 467 Ampitude Time (s) Fig Changing the ampitude enveope with drawenv(). The ampitude enveope of tico was modified graphicay using the mouse cursor res <- setenv(tuningfork.u, tico, f=f, pot=false, output="wave") spectro(res, osc=true) As we did with the transfer function of a frequency fiter (see Sect ), we coud need to modify the ampitude enveope by drawing it on the graphica device. The interactive graphica function drawenv() dispays the osciogram of the origina sound and ets the user draw a new enveope profie by cicking severa times on the waveform (Fig. 15.2): res <- drawenv(tuningfork, output="wave") 15.2 Echoes and Reverberation The exporation of echoocation and reverberation might require the artificia addition of echoes to a signa. The seewave function echo() adds severa echoes to an input sound. This function, which is based on a simiar principe to the FIR fiter (see Sect. 14.6), processes a convoution between the input wave and a puse echo fiter. There are two parameters defining an echo: its reative ampitude compared to the input signa and its time position or deay in reference to the beginning of the input signa. These parameters are set with the arguments ampitude and deay, respectivey. For instance, choosing deay=1 and amp=0.8 resuts in the addition of an echo starting 1 s after the beginning of the input fie with an ampitude scaed by a factor of 0.8 compared to the maximum of the input fie. In the foowing exampe, some reverberation is generated on heo using a simpe echo with a high reative ampitude (0.9) and very brief deay (0.01 s). The

4 Other Modifications use of isten=true aows to isten to the resut directy: echo(heo, amp=0.9, deay=0.01, output="wave", isten=true) In this second exampe, three non-overapping echoes decreasing in ampitude by a power of 2 and increasing in duration by a factor of 1, 2, and 3 are added to the same dataset heo: echo(heo, amp=1/(2^(2:4)), deay=duration(heo)*1:3, output="wave", isten=true) 15.3 Ampitude Fitering A way to attempt ceaning a sound is to repace any signa sampe which ampitude absoute vaue fas beow a threshod by a 0 vaue. Such ampitude fiter is easy to impement and fast because it reies on the test of a simpe condition: s f itered [n] = { 0 if s[n] θ s[n] if s[n] >θ where s[n] is the origina signa and θ the threshod. The seewave function afiter() does this easy job by referring to a threshod expressed in percentage reative to the maximum of the ampitude enveope. Here is a test with a threshod set with the argument threshod at 2% and 5%, respectivey (Fig. 15.3): res1 <- afiter(femo, threshod=2, output="wave", pot=false) res2 <- afiter(femo, threshod=5, output="wave", pot=false) The function afiter() is actuay parsed by severa functions which incudes an argument threshod (e.g., dfreq(), ifreq(), timer()). The function afiter() is far to be cever since it converts every sampe beow the threshod into 0, even if these sampes are part of the main signa to be anayzed here the frog vocaizations. It is thereby necessary to check whether the

5 15.3 Ampitude Fitering 469 Fig Ampitude fiter with afiter(). The origina femo recording (eft) was passed through an ampitude fiter with a threshod of 3% (midde) and 5% (right). Fourier window size = 512 sampes, overap = 0%, Hanning windows modified sound was not too much atered in its ampitude and frequency content. A simpe test consists in istening to the resuts: isten(res1) isten(res2) Here, the sounds appear sighty distorted. Such distortion may introduce some artifacts when tracking the frequency feature, as the dominant frequency. This was the case for the sheep dataset as shown in Fig Here, in the case of femo,the impact on frequency tracking is negigibe as iustrated in Fig. 15.4: df1 <- dfreq(femo, pot=false) df2 <- dfreq(res1, pot=false) df3 <- dfreq(res2, pot=false)

6 Other Modifications 8 no fiter afiter(..., threshod=3) afiter(..., threshod=5) Frequency (khz) Time (s) Fig Use of afiter() on dominant frequency tracking. The graphic shows the resuts of tracking the dominant frequency of femo after having fitered the sound using afiter() with different settings 15.4 Modifications Using the ISTDFT We have seen in Sect that we can use the inverse short-time Fourier transform (ISTFT/ISTDFT) to appy a band-pass or a band-stop fiter to a particuar time frequency section of sound. The principe was based on the production a STDFT matrix, the incusion of 0 vaues in the STDFT matrix, and then a return in the time domain using the ISTDFT. The changes of the STDFT matrix are not imited to the introduction of 0 vaues. Any modification can be appied to a time frequency section. For instance, we can increase the ampitude of the first harmonic of the fourth note of femo by a simpe mutipication by 20 (Fig. 15.5, top-eft). We first compute the STDFT matrix and get time and frequency imits of the harmonic to be manipuated as presented in Sect : # STDFT matrix f <- femo@samp.rate ; w <- 512; ovp <- 75; wn <- "hanning" data <- spectro(femo, w=w, ovp=ovp, wn=wn, pot=false, norm=false, db=null, compex=true) # time and frequency imits of the harmonic tmin <- which.min(abs(data$time-0.44)) tmax <- which.min(abs(data$time-0.51)) fmin <- which.min(abs(data$freq-2.77)) fmax <- which.min(abs(data$freq-4.21))

7 15.4 Modifications Using the ISTDFT 471 Fig Modifications using the ISTDFT. Four exampes of sound modifications on femo based on the function istft(). The second harmonic of the first harmonic of the fourth note was ampified (top-eft), reversed in frequency (top-right), repaced by a pure tone (bottom-eft), and repaced by noise (bottom-right). Fourier window size = 512 sampes, overap = 0%, Hanning windows

8 Other Modifications We then appy the modification with (Fig. 15.5, top-eft): data1 <- data$amp data1[fmin:fmax, tmin:tmax] <- 20*data1[fmin:fmax, tmin:tmax] res1 <- istft(data1, w=w, ovp=ovp, wn=wn, We can aso invert the harmonic in frequency (Fig. 15.5, top-right): data2 <- data$amp data2[fmin:fmax, tmin:tmax] <- data2[fmax:fmin, tmin:tmax] res2 <- istft(data2, w=w, ovp=ovp, wn=wn, We may aso ike to repace the harmonic by a pure tone (Fig. 15.5, bottom-eft): data3 <- data$amp data3[fmin:fmax, tmin:tmax] <- 0 data3[fmin+(fmax-fmin)/2, tmin:tmax] <- compex(rea=max(re(data3))) res3 <- istft(data3, w=w, ovp=ovp, wn=wn, Eventuay we can repace the harmonic with white noise (Fig. 15.5, bottomright) data4 <- data$amp re <- im <- rnorm(ength(fmin:fmax)*ength(tmin:tmax)) data4[fmin:fmax, tmin:tmax] <- compex(rea=re, imaginary=im) res4 <- istft(data4, w=w, ovp=ovp, wn=wn, Figure 15.5 was produced with the foowing code. The graphic function named pot.istft() is designed to faciitate the repetition of the pots: coeves <- seq(-80,0,1) pot.istft <- function(x){ spectro(x, coeves=coeves, fim=c(0,10), scae=false, tab="", fab="") rect(xeft=0.44, ybottom=2.77, xright=0.51, ytop=4.21, border="red", wd=3) } par(mfrow=c(2,2), mar=c(3,3,1,1), oma=c(2,2,0,0)) pot.istft(res1) (continued)

9 15.4 Modifications Using the ISTDFT 473 pot.istft(res2) pot.istft(res3) pot.istft(res4) mtext("time (s)", side=1, outer=true) mtext("frequency (khz)", side=2, outer=true, as=0) We can aso take advantage of the ISTDFT to shift positivey or negativey the frequencies of a sound to be used, for instance, in payback experiments. The function fs() for inear frequency shift of seewave can appy such drastic change. The main argument is shift that contros the frequency shift in Hz. If we take the orni song, we first appy a high-pass FIR fiter to remove the wind noise that coud generate undesired frequency bands: orni.fitered <- fir(orni, from=150, output="wave") We afterward use fs() to appy a positive and a negative frequency shift of 1000 Hz (Fig. 15.6): orni.higher <- fs(orni.fitered, shift=1000, output="wave") orni.ower <- fs(orni.fitered, shift=-1000, output="wave") The process of frequency shift can be easiy incuded in a for oop to generate a succession of modified sounds as iustrated in the DIY box DIY 15.1 How to generate a series of sounds with different inear frequency shifts It can be necessary for the purpose of an experiment to generate a series of stimui that resut of a inear frequency shift. We can, for instance, think that in the case of the cicada Cicada orni, a payback experiment coud aim at testing the importance of frequency in the encoding-decoding process of species recognition. To run such a test, it coud be necessary to appy a series of reguar shift between 2000 and Hz with a step of 500 Hz. We first prepare a numeric vector containing the shift vaues: shift <- seq(-2000, 2000, by=500) (continued)

10 Other Modifications DIY 15.1 (continued) We remove the 0 vaue: shift <- shift[shift!=0] so that we obtain the vector: shift [1] We use a FIR fiter to remove ow-frequency noise due to wind: orni.fitered <- fir(orni, from=150, output="wave") We write a for oop that cas the function fs() to appy the frequency change and the function savewav() to export the modified sounds into individua.wav fie fies named orni_fs_-2000.wav, orni_fs_-1500.wav, orni_fs_-1000.wav, etc.: for(i in 1:ength(shift)){ tmp <- fs(orni.fitered, shift=shift[i], output="wave") savewav(tmp, fie=paste("orni_fs_", shift[i], ".wav", sep="")) } 15.5 Modifications Using the Hibert Transform We have seen in Sects and that the Hibert transform can be used to obtain the ampitude enveope and the instantaneous frequency of monotona sounds. If we ca the seewave functions env() and ifreq(), we can store the Hibert ampitude enveope and the instantaneous frequency of tico in two

11 15.5 Modifications Using the Hibert Transform 475 Fig Linear frequency shift using the ISTDFT. The song of orni was shifted toward ow or high frequencies with the function fs() that uses the ISTDFT in background. Fourier window size = 512 sampes, overap = 0%, Hanning window distinct objects: env.tico <- env(tico, pot=false) ifreq.tico <- ifreq(tico, pot=false) seewave incudes a function to synthesize sound, synth2(), thatusesas input the Hibert ampitude enveope and the instantaneous frequency. This function, which is detaied in Sect. 18.5, can be used to recover the origina sound of tico. We just extract and mutipy by 1000 the second coumn of ifreq.tico that contains the instantaneous frequency in Hz: f <- tico@samp.rate ifreq.tico <- ifreq.tico$f[,2]*1000

12 Other Modifications We use these parameters to feed the function synth2(): res <- synth2(env=env.tico, ifreq=ifreq.tico, The object res is simiar to tico so that the manipuation is not that interesting. However, we can pay with enveope and instantaneous frequency independenty to modify the sound in a more fancy way. First we coud inverse the ampitude enveope but not the frequency moduations 1 : res <- synth2(env=rev(env.tico), ifreq=ifreq.tico, Second, we may reverse the instantaneous frequency but not the enveope (Fig. 15.7,eft): res <- synth2(env=env.tico, ifreq=rev(ifreq.tico), We can appy any arithmetic operation as squaring the ampitude enveope: res <- synth2(env=env.tico^2, ifreq=ifreq.tico, shifting the instantaneous frequency by adding 1000 Hz: res <- synth2(env=env.tico, ifreq=ifreq.tico+1000, 1 A simpe time reversion of the sound can be obtained with the function revw() as seen in Sect

13 15.5 Modifications Using the Hibert Transform 477 Fig Modifications using the Hibert transform. Three exampes of sound modifications on tico based on the function synth2(). The frequency moduation was inverted according to time (eft), the frequencies were mutipied by 2 (midde), and the frequency moduation was repaced by 4000 Hz pure tone (right). Fourier window size = 512 sampes, overap = 0%, Hanning window or mutipying the instantaneous frequency by a factor of 2 (Fig. 15.7, midde): res <- synth2(env=env.tico, ifreq=ifreq.tico*2, We can aso generate sighty more compex modifications. For instance, we can seectivey change the second note which position can be estimated automaticay using the function timer() (see Sect. 8.3): # timer() ca tres <- timer(tico, threshod=5, msmooth=c(50,0), pot=false) # start position of the second note (continued)

14 Other Modifications start <- tres$s.start[2] # end position of the second note end <- tres$s.end[2] # assignation of env.tico object in a new object env.tico.mod <- env.tico We repace the sampe vaues of the second note by the maximum of the ampitude enveope with: env.tico.mod[foor(start*f):foor(end*f)] <- max(env.tico) that we use with synth2(): res <- synth2(env=env.tico.mod, ifreq=ifreq.tico, The second note now appears as a rectanguar signa but sti containing the origina frequency moduation. This suggests that the ampitude moduation coud be removed without touching to the frequency moduation, a manipuation often carried out in anima payback experiments. Such manipuation is aso directy accessibe with the seewave function rmam(): res <- rmam(tico, pot=false, output="wave") At the opposite, we might intend to keep the ampitude moduation but to remove any frequency moduation. Here is a possibe soution by repacing the frequency moduation by a 4000 Hz pure tone (Fig. 15.7, right): res <- synth2(env=env.tico, ifreq=rep(4000, times=ength(ifreq.tico)),

Configuring RolandVersaWorks to print on your HEXIS media

Configuring RolandVersaWorks to print on your HEXIS media PRINTING DIVISION Product Buetin N 4 Configuring RoandVersaWorks to print on your HEXIS media 1. Instaing a media profie suitabe for your HEXIS printing media 1.1. Downoading the media profie 2 1.2. Importing

More information

Improving the Active Power Filter Performance with a Prediction Based Reference Generation

Improving the Active Power Filter Performance with a Prediction Based Reference Generation Improving the Active Power Fiter Performance with a Prediction Based Reference Generation M. Routimo, M. Sao and H. Tuusa Abstract In this paper a current reference generation method for a votage source

More information

Communication Systems

Communication Systems Communication Systems 1. A basic communication system consists of (1) receiver () information source (3) user of information (4) transmitter (5) channe Choose the correct sequence in which these are arranged

More information

Configuring Onyx to print on your HEXIS media

Configuring Onyx to print on your HEXIS media Configuring Onyx to print on your HEXIS media 1. Instaing a media profie suitabe for your HEXIS printing media 1.1. Downoading the media profie 2 1.2. Importing the media profie into Onyx 3 2. Defaut setting

More information

Airborne Ultrasonic Position and Velocity Measurement Using Two Cycles of Linear-Period-Modulated Signal

Airborne Ultrasonic Position and Velocity Measurement Using Two Cycles of Linear-Period-Modulated Signal Airborne Utrasonic Position and Veocity Measurement Using Two Cyces of Linear-Period-Moduated Signa Shinya Saito 1, Minoru Kuribayashi Kurosawa 1, Yuichiro Orino 1, and Shinnosuke Hirata 2 1 Department

More information

Pulsed RF Signals & Frequency Hoppers Using Real Time Spectrum Analysis

Pulsed RF Signals & Frequency Hoppers Using Real Time Spectrum Analysis Pused RF Signas & Frequency Hoppers Using Rea Time Spectrum Anaysis 1 James Berry Rohde & Schwarz Pused Rea Time and Anaysis Frequency Seminar Hopper Agenda Pused Signas & Frequency Hoppers Characteristics

More information

Co-channel Interference Suppression Techniques for STBC OFDM System over Doubly Selective Channel

Co-channel Interference Suppression Techniques for STBC OFDM System over Doubly Selective Channel Co-channe Interference Suppression Techniques for STBC OFDM System over Douby Seective Channe Jyoti P. Patra Dept. of Eectronics and Communication Nationa Institute Of Technoogy Rourkea-769008, India E

More information

Time-domain Techniques in EMI Measuring Receivers. Technical and Standardization Requirements

Time-domain Techniques in EMI Measuring Receivers. Technical and Standardization Requirements Time-domain Techniques in EMI Measuring Receivers Technica and Standardization Requirements CISPR = Huge, Sow, Compex, CISPR = Internationa Specia Committee on Radio Interference Technica committee within

More information

Georgia Institute of Technology. simulating the performance of a 32-bit interconnect bus. referenced to non-ideal planes. A transient simulation

Georgia Institute of Technology. simulating the performance of a 32-bit interconnect bus. referenced to non-ideal planes. A transient simulation Power ntegrity/signa ntegrity Co-Simuation for Fast Design Cosure Krishna Srinivasan1, Rohan Mandrekar2, Ege Engin3 and Madhavan Swaminathan4 Georgia nstitute of Technoogy 85 5th St NW, Atanta GA 30308

More information

Rate-Allocation Strategies for Closed-Loop MIMO-OFDM

Rate-Allocation Strategies for Closed-Loop MIMO-OFDM Rate-Aocation Strategies for Cosed-Loop MIMO-OFDM Joon Hyun Sung and John R. Barry Schoo of Eectrica and Computer Engineering Georgia Institute of Technoogy, Atanta, Georgia 30332 0250, USA Emai: {jhsung,barry}@ece.gatech.edu

More information

In this chapter, I explain the essentials that you need to start drawings. After a

In this chapter, I explain the essentials that you need to start drawings. After a CHAPTER Starting to Draw In this chapter, I expain the essentias that you need to start drawings. After a itte background, I discuss the basics of the screen that you see when you open AutoCAD or AutoCAD

More information

Fast Hybrid DFT/DCT Architecture for OFDM in Cognitive Radio System

Fast Hybrid DFT/DCT Architecture for OFDM in Cognitive Radio System Fast Hybrid DF/D Architecture for OFDM in ognitive Radio System Zhu hen, Moon Ho Lee, Senior Member, EEE, hang Joo Kim 3 nstitute of nformation&ommunication, honbuk ationa University, Jeonju, 56-756,Korea

More information

Channel Division Multiple Access Based on High UWB Channel Temporal Resolution

Channel Division Multiple Access Based on High UWB Channel Temporal Resolution Channe Division Mutipe Access Based on High UWB Channe Tempora Resoution Rau L. de Lacerda Neto, Aawatif Menouni Hayar and Mérouane Debbah Institut Eurecom B.P. 93 694 Sophia-Antipois Cedex - France Emai:

More information

SMOOTHED DOPPLER PROFILE IN MST RADAR DATA- THE MODIFIED CEPSTRUM APPROACH

SMOOTHED DOPPLER PROFILE IN MST RADAR DATA- THE MODIFIED CEPSTRUM APPROACH SMOOTHED DOPPLER PROFILE IN MST RADAR DATA- THE MODIFIED CEPSTRUM APPROACH M. Venatanarayana 1 and T. Jayachandra Prasad 1 Department of ECE, KSRE, Kadapa, India RGET, Nandya, India E-Mai: narayanamoram@gmai.com

More information

Fuzzy Model Predictive Control Applied to Piecewise Linear Systems

Fuzzy Model Predictive Control Applied to Piecewise Linear Systems 10th Internationa Symposium on Process Systems Engineering - PSE2009 Rita Maria de Brito Aves, Caudio Augusto Oer do Nascimento and Evaristo Chabaud Biscaia Jr. (Editors) 2009 Esevier B.V. A rights reserved.

More information

Getting More Out Of Programming-By-Demonstration

Getting More Out Of Programming-By-Demonstration Papers CHI 99 15-20 MAY 1999 Getting More Out Of Programming-By-Demonstration Richard G. McDanie and Brad A. Myers HCI Institute, Schoo of Computer Science Carnegie Meon University 5000 Forbes Avenue Pittsburgh,

More information

Secure Physical Layer Key Generation Schemes: Performance and Information Theoretic Limits

Secure Physical Layer Key Generation Schemes: Performance and Information Theoretic Limits Secure Physica Layer Key Generation Schemes: Performance and Information Theoretic Limits Jon Waace Schoo of Engineering and Science Jacobs University Bremen, Campus Ring, 879 Bremen, Germany Phone: +9

More information

Series. Quite simply, the best in insulation! C.A 6521 C.A 6523 C.A 6525 C.A 6531 C.A Megohmmeters

Series. Quite simply, the best in insulation! C.A 6521 C.A 6523 C.A 6525 C.A 6531 C.A Megohmmeters Quite simpy, the best in insuation! Series C.A 6521 C.A 6523 C.A 6525 C.A 6531 C.A 6533 Megohmmeters Twin digita-anaogue dispay Giant back-it screen Battery powered for hours Programmabe threshod aarms

More information

Resource Allocation via Linear Programming for Multi-Source, Multi-Relay Wireless Networks

Resource Allocation via Linear Programming for Multi-Source, Multi-Relay Wireless Networks Resource Aocation via Linear Programming for Muti-Source, Muti-Reay Wireess Networs Nariman Farsad and Andrew W Ecford Dept of Computer Science and Engineering, Yor University 4700 Keee Street, Toronto,

More information

Low Delay Wind Noise Cancellation for Binaural Hearing Aids

Low Delay Wind Noise Cancellation for Binaural Hearing Aids INTER-NOISE 6 Low Deay Wind Noise Canceation for Binaura Hearing Aids Nobuhio HIRUMA ; Ryousue KOUYAMA ; Hidetoshi NAKASHIMA 3 ; Yoh-ichi FUJISAKA 4, 4 Rion Co., Ltd, Japan, 3 Nationa Institute of Technoogy,

More information

Inside Adobe Photoshop 5, Limited Edition Customizing Photoshop 5

Inside Adobe Photoshop 5, Limited Edition Customizing Photoshop 5 Inside Adobe Photoshop 5, Limited Edition - CH 3 - Customizing Photoshop 5 Page 1 of 21 [Figures are not incuded in this sampe chapter] Inside Adobe Photoshop 5, Limited Edition - 3 - Customizing Photoshop

More information

LTC Linear Phase 8th Order Lowpass Filter FEATURES APPLICATIONS DESCRIPTION TYPICAL APPLICATION

LTC Linear Phase 8th Order Lowpass Filter FEATURES APPLICATIONS DESCRIPTION TYPICAL APPLICATION LTC69-7 Linear Phase 8th Order Lowpass Fiter FEATURES n 8th Order, Linear Phase Fiter in SO-8 Package n Raised Cosine Ampitude Response n 43 Attenuation at 2 f CUTOFF n Wideband Noise: 4μV RMS n Operates

More information

P H O T O CD I N F O R M A T I O N B U L L E T I N

P H O T O CD I N F O R M A T I O N B U L L E T I N PCD 077 Juy, 1994 Copyright, Eastman Kodak Company, 1994 P H O T O CD I N F O R M A T I O N B U L L E T I N Fuy Utiizing Photo CD Images Maintaining Coor Consistency When Creating KODAK Photo CD Portfoio

More information

Rateless Codes for the Gaussian Multiple Access Channel

Rateless Codes for the Gaussian Multiple Access Channel Rateess Codes for the Gaussian Mutipe Access Channe Urs Niesen Emai: uniesen@mitedu Uri Erez Dept EE, Te Aviv University Te Aviv, Israe Emai: uri@engtauaci Devavrat Shah Emai: devavrat@mitedu Gregory W

More information

Understanding The HA2500 Horizontal Output Load Test

Understanding The HA2500 Horizontal Output Load Test Understanding The HA2500 Horizonta Output Load Test Horizonta output stages are part of every CRT video dispay incuding cosed circuit monitors, computer monitors, video games, medica monitors, TVs. HDTVs,

More information

Powerfully simple event analysis software

Powerfully simple event analysis software synchrowave Event Software Powerfuy simpe event anaysis software Diagnose reay behavior during a power system faut. Time-aign event reports from mutipe reays for comparison and anaysis. Create custom cacuations,

More information

Chapter 3: Creating Images in Layers. Creating Images in Layers. Chapter 3: Creating Images in Layers Page 1 of 22.

Chapter 3: Creating Images in Layers. Creating Images in Layers. Chapter 3: Creating Images in Layers Page 1 of 22. Chapter 3: Creating Images in Layers Page 1 of 22 Chapter 3: Creating Images in Layers In This Chapter Creating Images in Layers Creating and Managing Layers Troubeshooting Photoshop at Work: Creating

More information

arxiv: v3 [astro-ph.co] 23 Jun 2009

arxiv: v3 [astro-ph.co] 23 Jun 2009 Poarized CMB power spectrum estimation using the pure pseudo cross-spectrum approach arxiv:0903.2350v3 [astro-ph.co] 23 Jun 2009 J. Grain, 1, 2, M. Tristram, 3, and R. Stompor 1, 1 CNRS, Laboratoire AstroParticue

More information

CAN FD system design

CAN FD system design icc 215 CAN FD system design Dr. - Ing. M. Schreiner Daimer Research and Deveopment Abstract The objective of this paper is to give genera design rues for the physica ayer of CAN FD networks. As an introduction

More information

UNIVERSITY OF CALIFORNIA College of Engineering Department of Electrical Engineering and Computer Sciences. EE143 Final Exam

UNIVERSITY OF CALIFORNIA College of Engineering Department of Electrical Engineering and Computer Sciences. EE143 Final Exam UNIVERSITY OF CALIFORNIA Coege of Engineering Department of Eectrica Engineering and Computer Sciences Spring 2006 EE143 Fina Exam Famiy Name First name SID Signature Sampe Soutions Instructions: DO ALL

More information

Effect of Estimation Error on Adaptive L-MRC Receiver over Nakagami-m Fading Channels

Effect of Estimation Error on Adaptive L-MRC Receiver over Nakagami-m Fading Channels Internationa Journa of Appied Engineering Research ISSN 973-456 Voume 3, Number 5 (8) pp. 77-83 Research India Pubications. http://www.ripubication.com Effect of Estimation Error on Adaptive -MRC Receiver

More information

Effect of Interfering Users on the Modulation Order and Code Rate for UWB Impulse-Radio Bit-Interleaved Coded M-ary PPM

Effect of Interfering Users on the Modulation Order and Code Rate for UWB Impulse-Radio Bit-Interleaved Coded M-ary PPM Effect of Interfering Users on the Moduation Order and Code Rate for UWB Impuse-Radio Bit-Intereaved Coded M-ary PPM Ruben Merz and Jean-Yves Le Boudec EPFL, Schoo of Computer and Communication Sciences

More information

DIGITISATION: CONCEPT, NEED, METHODS AND EQUIPMENT

DIGITISATION: CONCEPT, NEED, METHODS AND EQUIPMENT UNIT 7 DIGITISATION: CONCEPT, NEED, METHODS AND EQUIPMENT Structure 7.0 Objectives 7.1 Introduction 7.2 Digitisation: Basics 7.2.1 Definition 7.2.2 Need for Digitisation 7.3 Seection of Materias for Digitisation

More information

APPROXIMATING NON-LINEAR INDUCTORS USING TIME-VARIANT LINEAR FILTERS

APPROXIMATING NON-LINEAR INDUCTORS USING TIME-VARIANT LINEAR FILTERS Proc. of the 18 th Int. Conference on Digita Audio Effects (DAFx-15), Trondheim, Norway, Nov 3 - Dec 3, 215 APPOXIMATING NON-LINEA INDUCTOS USING TIME-VAIANT LINEA FILTES Giuio Moro Centre for Digita Music

More information

Performance Comparison of Cyclo-stationary Detectors with Matched Filter and Energy Detector M. SAI SINDHURI 1, S. SRI GOWRI 2

Performance Comparison of Cyclo-stationary Detectors with Matched Filter and Energy Detector M. SAI SINDHURI 1, S. SRI GOWRI 2 ISSN 319-8885 Vo.3,Issue.39 November-14, Pages:7859-7863 www.ijsetr.com Performance Comparison of Cyco-stationary Detectors with Matched Fiter and Energy Detector M. SAI SINDHURI 1, S. SRI GOWRI 1 PG Schoar,

More information

Information Theoretic Radar Waveform Design for Multiple Targets

Information Theoretic Radar Waveform Design for Multiple Targets 1 Information Theoretic Radar Waveform Design for Mutipe Targets Amir Leshem and Arye Nehorai Abstract In this paper we use information theoretic approach to design radar waveforms suitabe for simutaneousy

More information

LT1176/LT Step-Down Switching Regulator FEATURES APPLICATIONS DESCRIPTION TYPICAL APPLICATION

LT1176/LT Step-Down Switching Regulator FEATURES APPLICATIONS DESCRIPTION TYPICAL APPLICATION Step-Down Switching Reguator FEATURES n 1.2A Onboard Switch n 100kHz Switching Frequency n Exceent Dynamic Behavior n DIP and Surface Mount Packages n Ony 8mA Quiescent Current n Preset 5 Output Avaiabe

More information

LTC kHz Continuous Time, Linear Phase Lowpass Filter FEATURES DESCRIPTION APPLICATIONS TYPICAL APPLICATION

LTC kHz Continuous Time, Linear Phase Lowpass Filter FEATURES DESCRIPTION APPLICATIONS TYPICAL APPLICATION FEATURES DESCRIPTION n th Order, 0kHz Linear Phase Fiter in an SO- n Differentia Inputs and Outputs n Operates on a Singe or a ± Suppy n Low Offset: m Typica n db THD and SNR n db SNR n Shutdown Mode n

More information

Lesson Objective Identify the value of a quarter and count groups of coins that include quarters.

Lesson Objective Identify the value of a quarter and count groups of coins that include quarters. LESSON 9.9C Hands On Quarters PROFESSIONAL PROFESSIONAL DEVELOPMENT DEVELOPMENT LESSON AT A GLANCE Mathematics Forida Standard Te and write time. MAFS.MD.a.a Identify and combine vaues of money in cents

More information

A Low Complexity VCS Method for PAPR Reduction in Multicarrier Code Division Multiple Access

A Low Complexity VCS Method for PAPR Reduction in Multicarrier Code Division Multiple Access 0 JOURNAL OF ELECTRONIC SCIENCE AND TECHNOLOGY OF CHINA, VOL. 5, NO., JUNE 007 A Low Compexity VCS Method for PAPR Reduction in Muticarrier Code Division Mutipe Access Si-Si Liu, Yue iao, Qing-Song Wen,

More information

Path Delay Estimation using Power Supply Transient Signals: A Comparative Study using Fourier and Wavelet Analysis

Path Delay Estimation using Power Supply Transient Signals: A Comparative Study using Fourier and Wavelet Analysis Path Deay Estimation using Power Suppy Transient Signas: A Comparative Study using Fourier and Waveet Anaysis Abhishek Singh, Jitin Tharian and Jim Pusqueic VLSI Research Laboratory Department of Computer

More information

Top Down Design of Joint MODEM and CODEC Detection Schemes for DSRC Coded-FSK Systems over High Mobility Fading Channels

Top Down Design of Joint MODEM and CODEC Detection Schemes for DSRC Coded-FSK Systems over High Mobility Fading Channels Top Down Design of Joint MODEM and CODEC Detection Schemes for DSRC Coded-FSK Systems over High Mobiity Fading Channes Juinn-Horng Deng, Feng-Chin Hsiao, and Yi-Hsin Lin Department of Communications Engineering

More information

A PARAMETRIC HARMONIC+NOISE MODEL. Gérard Bailly

A PARAMETRIC HARMONIC+NOISE MODEL. Gérard Bailly A PARAMETRIC HARMONIC+NOISE MODEL Gérard Baiy Institut de a Communication Parée INPG & Université Stendha 46, avenue Féi Viaet, 383 Grenobe Cede, France contact: web: http://www.icp.inpg.fr/ baiy - e-mai:

More information

Wireless Communications

Wireless Communications Wireess Communications Ceuar Concept Hamid Bahrami Reference: Rappaport Chap3 Eectrica & Computer Engineering Statements of Probems Soving the probem of Spectra congestion System Capacity A system-eve

More information

Resource Allocation via Linear Programming for Fractional Cooperation

Resource Allocation via Linear Programming for Fractional Cooperation 1 Resource Aocation via Linear Programming for Fractiona Cooperation Nariman Farsad and Andrew W Ecford Abstract In this etter, resource aocation is considered for arge muti-source, muti-reay networs empoying

More information

Short Notes Lg Q in the Eastern Tibetan Plateau

Short Notes Lg Q in the Eastern Tibetan Plateau Buetin of the Seismoogica Society of America, Vo. 92, No. 2, pp. 87 876, March 2002 Short Notes Q in the Eastern Tibetan Pateau by Jiakang Xie Abstract spectra are coected from the 99 992 Tibetan Pateau

More information

Knowledge Representation and Reasoning in the Design of Composite Systems

Knowledge Representation and Reasoning in the Design of Composite Systems 470 IEEE TRANSACTIONS ON, SOFTWARE ENGINEERING, VOL. 18, NO. h, JUNE 1992 Knowedge Representation and Reasoning in the Design of Composite Systems Stephen Fickas and B. Robert Hem Abstract- Our interest

More information

Wireless Communications

Wireless Communications Wireess Communications Mutipe Access Hamid Bahrami Eectrica & Computer Engineering Communication System Bock Diagram Dupexing Dupexing: transmit and receive at the same time Exampe: teephone, how about

More information

Appendix A Rolling Average Algorithm

Appendix A Rolling Average Algorithm Appendix A Roing Average Agorith 98 ROLLING AVERAGE ALGORITHM Let be a ink between two reader fied sites with aributes th, the ink threshod for ink,, the current roing average trave tie for ink, and s,

More information

An Efficient Adaptive Filtering for CFA Demosaicking

An Efficient Adaptive Filtering for CFA Demosaicking Dev.. Newin et. a. / (IJCSE) Internationa Journa on Computer Science and Engineering An Efficient Adaptive Fitering for CFA Demosaicking Dev.. Newin*, Ewin Chandra Monie** * Vice Principa & Head Dept.

More information

WIFI-BASED IMAGING FOR GPR APPLICATIONS: FUNDAMENTAL STUDY AND EXPERIMENTAL RESULTS

WIFI-BASED IMAGING FOR GPR APPLICATIONS: FUNDAMENTAL STUDY AND EXPERIMENTAL RESULTS WIFI-BASED IMAGING FOR GPR APPICATIONS: FUNDAMENTA STUDY AND EXPERIMENTA RESUTS Weike Feng *, Jean-Miche Friedt, Zhipeng Hu 3, Grigory Cherniak, and Motoyuki Sato 4 Graduate Schoo of Environmenta Studies,

More information

Multi-stage Amplifiers Prof. Ali M. Niknejad Prof. Rikky Muller

Multi-stage Amplifiers Prof. Ali M. Niknejad Prof. Rikky Muller EECS 105 Spring 2017, Modue 4 Muti-stage Ampifiers Prof. Ai M. Niknejad Department of EECS Announcements HW10 due on Friday Lab 5 due this week 2 weeks of ecture eft! 2 Mutistage Ampifiers Why cascade

More information

Channel Estimation for SC-FDE Systems Using Frequency Domain Multiplexed Pilots

Channel Estimation for SC-FDE Systems Using Frequency Domain Multiplexed Pilots Channe Estimation for SC-FDE Systems Using Frequency Domain utipexed Piots Chan-Tong am, David D. Faconer and Forence Danio-emoine BCWS, Careton Univ., Canada K1S 5B6 Emai: {amc, ddf, fdanio@sce.careton.ca

More information

A Novel Method for Doppler and DOD- DOA Jointly Estimation Based on FRFT in Bistatic MIMO Radar System

A Novel Method for Doppler and DOD- DOA Jointly Estimation Based on FRFT in Bistatic MIMO Radar System 7 Asia-Pacific Engineering and Technoogy Conference (APETC 7) ISBN: 978--6595-443- A Nove Method for Dopper and DOD- DOA Jointy Estimation Based on FRFT in Bistatic MIMO Radar System Derui Song, Li Li,

More information

SCHEDULING the wireless links and controlling their

SCHEDULING the wireless links and controlling their 3738 IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, VOL. 13, NO. 7, JULY 2014 Minimum Length Scheduing With Packet Traffic Demands in Wireess Ad Hoc Networks Yacin Sadi, Member, IEEE, and Sinem Coeri Ergen,

More information

1.4.4 PSPICE COMPARATOR MACRO MODEL

1.4.4 PSPICE COMPARATOR MACRO MODEL 1.4.4 PSPICE COMPARATOR MACRO MODEL Sec.1.4.4 Operationa Ampifiers 1 The use of an anaogue behavioura mode (VCVS E) has proved to give near-idea resuts of a comparator in Section 1.4.3. Job times were

More information

Development of a LabVIEW-based test facility for standalone PV systems

Development of a LabVIEW-based test facility for standalone PV systems Deveopment of a LabVIEW-based test faciity for standaone PV systems Aex See Kok Bin, Shen Weixiang, Ong Kok Seng, Saravanan Ramanathan and Low I-Wern Monash University Maaysia, Schoo of Engineering No.2,

More information

Debugging EMI Using a Digital Oscilloscope

Debugging EMI Using a Digital Oscilloscope Debugging EMI Using a Digita Oscioscope 06/2009 Nov 2010 Fundamentas Scope Seminar of DSOs Signa Fideity 1 1 1 Debugging EMI Using a Digita Oscioscope Background radiated emissions Basics of near fied

More information

Hybrid Digital-Analog Joint Source Channel Coding for Broadcast Multiresolution Communications

Hybrid Digital-Analog Joint Source Channel Coding for Broadcast Multiresolution Communications 217 25th European Signa Processing Conference (EUSIPCO) Hybrid Digita-Anaog Joint Source Channe Coding for Broadcast Mutiresoution Communications O. Fresnedo, P. Suárez-Casa, L. Castedo Department of Eectronics

More information

hp scanjet 4400c series and 5400c series scanners user s manual

hp scanjet 4400c series and 5400c series scanners user s manual hp scanjet 4400c series and 5400c series scanners user s manua Copyright Hewett-Packard Company 2001 A rights reserved. Reproduction, adaptation, or transation without prior written permission is prohibited,

More information

LT8710 Synchronous SEPIC/ Inverting/Boost Controller with Output Current Control. Applications. Typical Application

LT8710 Synchronous SEPIC/ Inverting/Boost Controller with Output Current Control. Applications. Typical Application Features n Wide Input Range: 4.5V to 8V n Rai-to-Rai Output Current Monitor and Contro n Input Votage Reguation for High Impedance Inputs n C/1 or Power Good Indication Pin n MODE Pin for Forced CCM or

More information

Spatial Reuse in Dense Wireless Areas: A Cross-layer Optimization Approach via ADMM

Spatial Reuse in Dense Wireless Areas: A Cross-layer Optimization Approach via ADMM IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS 1 Spatia Reuse in Dense Wireess Areas: A Cross-ayer Optimization Approach via ADMM Haeh Tabrizi, Member, IEEE, Borja Peeato, Member, IEEE, Gonaz Farhadi, Member,

More information

FREQUENCY-DOMAIN TURBO EQUALIZATION FOR SINGLE CARRIER MOBILE BROADBAND SYSTEMS. Liang Dong and Yao Zhao

FREQUENCY-DOMAIN TURBO EQUALIZATION FOR SINGLE CARRIER MOBILE BROADBAND SYSTEMS. Liang Dong and Yao Zhao FREQUENCY-DOMAIN TURBO EQUALIZATION FOR SINGLE CARRIER MOBILE BROADBAND SYSTEMS Liang Dong and Yao Zhao Department of Eectrica and Computer Engineering Western Michigan University Kaamazoo, MI 49008 ABSTRACT

More information

ACTA TECHNICA NAPOCENSIS

ACTA TECHNICA NAPOCENSIS 69 TECHNICAL UNIVERSITY OF CLUJ-NAPOCA ACTA TECHNICA NAPOCENSIS Series: Appied Mathematics, Mechanics, and Engineering Vo. 60, Issue I, March, 07 CAD MODEL OF THE RTTRR MODULAR SMALL-SIZED SERIAL ROBOT

More information

The Cognitive Coprocessor Architecture for Interactive User Interfaces

The Cognitive Coprocessor Architecture for Interactive User Interfaces The Cognitive Coprocessor Architecture for Interactive User Interfaces George G. Robertson, Stuart I

More information

LSTM TIME AND FREQUENCY RECURRENCE FOR AUTOMATIC SPEECH RECOGNITION

LSTM TIME AND FREQUENCY RECURRENCE FOR AUTOMATIC SPEECH RECOGNITION LSTM TIME AND FREQUENCY RECURRENCE FOR AUTOMATIC SPEECH RECOGNITION Jinyu Li, Abderahman Mohamed, Geoffrey Zweig, and Yifan Gong Microsoft Corporation, One Microsoft Way, Redmond, WA 98052 { jinyi, asamir,

More information

On the meaning of computer models of robotenvironment

On the meaning of computer models of robotenvironment University of Woongong Research Onine Facuty of Informatics - Papers (Archive) Facuty of Engineering and Information Sciences 007 On the meaning of computer modes of robotenvironment interaction Urich

More information

Manual SURFACE ROUGHNESS TESTER PCE-RT 1200

Manual SURFACE ROUGHNESS TESTER PCE-RT 1200 PCE Americas Inc. 711 Commerce Way Suite 8 Jupiter FL-33458 USA From outside US: +1 Te: (561) 32-9162 Fax: (561) 32-9176 info@pce-americas.com PCE Instruments UK Ltd. Units 12/13 Southpoint Business Park

More information

A GMM-STRAIGHT Approach to Voice Conversion

A GMM-STRAIGHT Approach to Voice Conversion A GMM-STRAIGHT Approach to Voice Conversion EE 225D Project, May 2009 Stephen Shum SID: 18066044 sshum@berkeey.edu Abstract This paper expores the topic of voice conversion as expored in a joint project

More information

Orthogonal Multicode Channelization Applied to Subsampling Digital UWB Receiver

Orthogonal Multicode Channelization Applied to Subsampling Digital UWB Receiver Orthogona Muticode Channeization Appied to Subsamping Digita UWB Receiver Yves Vanderperren, Geert Leus, Wim Dehaene EE Dept. ESAT-MICAS), Kathoieke Universiteit Leuven, Begium Facuty of EE, Mathematics

More information

GRAY CODE FOR GENERATING TREE OF PERMUTATION WITH THREE CYCLES

GRAY CODE FOR GENERATING TREE OF PERMUTATION WITH THREE CYCLES VO. 10, NO. 18, OCTOBER 2015 ISSN 1819-6608 GRAY CODE FOR GENERATING TREE OF PERMUTATION WITH THREE CYCES Henny Widowati 1, Suistyo Puspitodjati 2 and Djati Kerami 1 Department of System Information, Facuty

More information

Performance Measures of a UWB Multiple-Access System: DS/CDMA versus TH/PPM

Performance Measures of a UWB Multiple-Access System: DS/CDMA versus TH/PPM Performance Measures of a UWB Mutipe-Access System: DS/CDMA versus TH/PPM Aravind Kaias and John A. Gubner Dept. of Eectrica Engineering University of Wisconsin-Madison Madison, WI 53706 akaias@wisc.edu,

More information

OpenStax-CNX module: m Inductance. OpenStax College. Abstract

OpenStax-CNX module: m Inductance. OpenStax College. Abstract OpenStax-CNX modue: m42420 1 Inductance OpenStax Coege This work is produced by OpenStax-CNX and icensed under the Creative Commons Attribution License 3.0 Cacuate the inductance of an inductor. Cacuate

More information

GT3D Digital Timers. 100 to 240V AC (50/60Hz), 24V AC (50/60Hz)/24V DC

GT3D Digital Timers. 100 to 240V AC (50/60Hz), 24V AC (50/60Hz)/24V DC rs G3D Series G3D rs Key features of the G3D series incude: Precise time setting using digita thumbwhee switches Eapsed or time remaining LCD dispay 6 time ranges, 16 timing functions deays up to 99.9

More information

Suppression of ISI Caused by Sampling Time Offset in IFDMA Systems

Suppression of ISI Caused by Sampling Time Offset in IFDMA Systems Suppression of ISI Caused by Samping Time Offset in IFDA Systems Aexander Arkhipov, ichae Schne German Aerospace Center (DLR), Inst. of Communications and Navigation, D-82234, Wessing, Germany. Phone/e-mai:

More information

ADAPTIVE ITERATION SCHEME OF TURBO CODE USING HYSTERESIS CONTROL

ADAPTIVE ITERATION SCHEME OF TURBO CODE USING HYSTERESIS CONTROL ADATIV ITRATION SCHM OF TURBO COD USING HYSTRSIS CONTROL Chih-Hao WU, Kenichi ITO, Yung-Liang HUANG, Takuro SATO Received October 9, 4 Turbo code, because of its remarkabe coding performance, wi be popuar

More information

RAD250 Nothing Comes Close to a Cobra

RAD250 Nothing Comes Close to a Cobra Operating Instructions The obra ine of quaity products incudes: B Radios Dash ams Radar Detectors Marine VHF Radios Power Inverters Accessories RADAR/LASER PROTETION RAD250 Nothing omes ose to a obra Introduction

More information

What Narrow-linewidth semiconductor lasers can do for defense and security?

What Narrow-linewidth semiconductor lasers can do for defense and security? See discussions, stats, and author profies for this pubication at: https://www.researchgate.net/pubication/228372604 What Narrow-inewidth semiconductor asers can do for defense and security? Artice in

More information

CHANNEL MODELLING & PERFORMANCE ANALYSIS OF WIFI

CHANNEL MODELLING & PERFORMANCE ANALYSIS OF WIFI CHANNEL MODELLING & PERFORMANCE ANALYSIS OF WIFI Jivisha, Gaurav Mohta, Saumya Das Siim Manipa Institute of Technoogy Emai Id- gauravmohta.officia@gmai.com; Ph No. +9 9609850304 Abstract Wi-Fi or wireess

More information

Handheld Cable & Antenna Analyzer R&S ZVH Product Introduction Matthias Roski application engineer

Handheld Cable & Antenna Analyzer R&S ZVH Product Introduction Matthias Roski application engineer Handhed Cabe & Antenna Anayzer R&S ZVH Product Introduction Matthias Roski appication engineer Handhed Cabe & Antenna Anayzer R&S ZVH Appication Area Antenna and Cabe Instaation of Transmitter Stations

More information

Estimation and Control of Lateral Displacement of Electric Vehicle Using WPT Information

Estimation and Control of Lateral Displacement of Electric Vehicle Using WPT Information Estimation and Contro of Latera Dispacement of Eectric Vehice Using WPT Information Pakorn Sukprasert Binh Minh Nguyen Hiroshi Fujimoto Department of Eectrica Engineering and Information Systems, The University

More information

Blind Multiuser Detection in Asynchronous DS-CDMA Systems over Nakagami-m Fading Channels

Blind Multiuser Detection in Asynchronous DS-CDMA Systems over Nakagami-m Fading Channels Bind Mutiuser Detection in Asynchronous DS-CDMA Systems over akagami-m Fading Channes Vinay Kumar Pamua JU Kakinada, Andhra Pradesh, India 533 003 pamuavk@yahoo.com ABSRAC his paper presents a technique

More information

Alignment of Defense Contractors Innovation Strategies With US DOD RDT&E Plans: The Winners and Losers.

Alignment of Defense Contractors Innovation Strategies With US DOD RDT&E Plans: The Winners and Losers. Aignment of Defense Contractors Innovation Strategies With US DOD RDT&E Pans: The Winners and Losers. A new anaysis by Vector Anaytics based on the FY19 budget request. www.vector-anaytics.com 2 This new

More information

LTC6993-1/LTC LTC6993-3/LTC TimerBlox: Monostable Pulse Generator (One Shot) Applications. Typical Application

LTC6993-1/LTC LTC6993-3/LTC TimerBlox: Monostable Pulse Generator (One Shot) Applications. Typical Application Features n Puse Width Range: 1µs to 33.6 Seconds n Configured with 1 to 3 Resistors n Puse Width Max Error: 51µs

More information

HEXFET Power MOSFET V DSS = 100V. R DS(on) = 23mΩ I D = 57A

HEXFET Power MOSFET V DSS = 100V. R DS(on) = 23mΩ I D = 57A Advanced Process Technoogy Utra Low On-Resistance Dynamic dv/dt Rating 175 C Operating Temperature Fast Switching Fuy Avaanche Rated Lead-Free Description Advanced HEXFET Power MOSFETs from Internationa

More information

New Image Restoration Method Based on Multiple Aperture Defocus Images for Microscopic Images

New Image Restoration Method Based on Multiple Aperture Defocus Images for Microscopic Images Sensors & Transducers, Vo. 79, Issue 9, September 204, pp. 62-67 Sensors & Transducers 204 by IFSA Pubishing, S. L. http://www.sensorsporta.com New Image Restoration Method Based on Mutipe Aperture Defocus

More information

Cross-layer queuing analysis on multihop relaying networks with adaptive modulation and coding K. Zheng 1 Y. Wang 1 L. Lei 2 W.

Cross-layer queuing analysis on multihop relaying networks with adaptive modulation and coding K. Zheng 1 Y. Wang 1 L. Lei 2 W. www.ietd.org Pubished in IET Communications Received on 18th June 2009 Revised on 30th Juy 2009 ISSN 1751-8628 Cross-ayer queuing anaysis on mutihop reaying networks with adaptive moduation and coding

More information

Nordic Ecolabelling for Copy and printing paper - supplementary module

Nordic Ecolabelling for Copy and printing paper - supplementary module rdic Ecoabeing for Copy and printing paper - suppementary modue Version 4.3 22 June 2011 31 December 2020 Content What is rdic Swan Ecoabeed copy and printing paper? 3 Why choose the rdic Swan Ecoabe?

More information

LT1970A 500mA Power Op Amp with Adjustable Precision Current Limit FEATURES DESCRIPTION APPLICATIONS TYPICAL APPLICATION

LT1970A 500mA Power Op Amp with Adjustable Precision Current Limit FEATURES DESCRIPTION APPLICATIONS TYPICAL APPLICATION FEATURES n ±5mA Minimum Output Current n Independent Adjustment of Source and Sink Current Limits n 1% Current Limit Accuracy n Improved Reactive Load Driving Stabiity n Operates with Singe or Spit Suppies

More information

PEP - II LFB - Status and Predictions

PEP - II LFB - Status and Predictions PEP - II LFB - Status and Predictions Measurements and observations from o/30 and 10/31 high-current operation at 2.2A Predictions and impications for upgraded high-current configurations J. Fox, S. Prabhakar,

More information

DESIGN OF SHIP CONTROLLER AND SHIP MODEL BASED ON NEURAL NETWORK IDENTIFICATION STRUCTURES

DESIGN OF SHIP CONTROLLER AND SHIP MODEL BASED ON NEURAL NETWORK IDENTIFICATION STRUCTURES DESIGN OF SHIP CONROLLER AND SHIP MODEL BASED ON NEURAL NEWORK IDENIFICAION SRUCURES JASMIN VELAGIC, FACULY OF ELECRICAL ENGINEERING SARAJEVO, BOSNIA AND HERZEGOVINA, asmin.veagic@etf.unsa.ba ABSRAC his

More information

Accurate and Robust Indoor Localization Systems using Ultra-wideband Signals

Accurate and Robust Indoor Localization Systems using Ultra-wideband Signals Accurate and Robust Indoor Locaization Systems using Utra-wideband Signas Pau Meissner, Erik Leitinger, Markus Fröhe, and Kaus Witrisa Graz University of Technoogy, Austria; E-mai: pau.meissner@tugraz.at

More information

arxiv: v4 [physics.soc-ph] 31 Dec 2013

arxiv: v4 [physics.soc-ph] 31 Dec 2013 A Cascading Faiure Mode by Quantifying Interactions Junjian Qi and Shengwei Mei Department of Eectrica Engineering, Tsinghua University, Beijing, China 100084 arxiv:1301.2055v4 [physics.soc-ph] 31 Dec

More information

Rectangular-shaped Inductive Proximity Sensor GX-F/H SERIES

Rectangular-shaped Inductive Proximity Sensor GX-F/H SERIES 87 PHOTO PHOTO IGHT FOW PARTICUAR Rectanguar-shaped Inductive Proximity Sensor SERIES Reated Information Genera terms and conditions... F-7 Gossary of terms... P.18~ Sensor seection guide... P.83~ Genera

More information

LT Dual Very Low Noise, Differential Amplifi er and 5MHz Lowpass Filter DESCRIPTION FEATURES APPLICATIONS TYPICAL APPLICATION

LT Dual Very Low Noise, Differential Amplifi er and 5MHz Lowpass Filter DESCRIPTION FEATURES APPLICATIONS TYPICAL APPLICATION FEATURES n Dua Differentia Ampifi er with MHz Lowpass Fiters 4th Order Fiters Approximates Chebyshev Response Guaranteed Phase and Gain Matching Resistor-Programmabe Differentia Gain n >8 Signa-to-Noise

More information

LT6658 Precision Dual Output, High Current, Low Noise, Voltage Reference. Applications. Typical Application

LT6658 Precision Dual Output, High Current, Low Noise, Voltage Reference. Applications. Typical Application Features Dua Output Tracking Reference Each Output Configurabe to 6 Output : ma Source/2mA Sink Output 2: ma Source/2mA Sink Low Drift: A-Grade: ppm/ C Max B-Grade: 2ppm/ C Max High Accuracy: A-Grade:

More information

C Soldering Temperature, for 10 seconds 300 (1.6mm from case )

C Soldering Temperature, for 10 seconds 300 (1.6mm from case ) PD - 95007A IRFP250NPbF Advanced Process Technoogy Dynamic dv/dt Rating 75 C Operating Temperature Fast Switching Fuy Avaanche Rated Ease of Paraeing Simpe Drive Requirements Lead-Free G HEXFET Power MOSFET

More information

Multi-user video streaming using unequal error protection network coding in wireless networks

Multi-user video streaming using unequal error protection network coding in wireless networks Vukobratović and Stanković EURASIP Journa on Wireess Communications and Networking 202, 202:28 RESEARCH Open Access Muti-user video streaming using unequa error protection network coding in wireess networks

More information

Minimizing Distribution Cost of Distributed Neural Networks in Wireless Sensor Networks

Minimizing Distribution Cost of Distributed Neural Networks in Wireless Sensor Networks 1 Minimizing Distribution Cost of Distributed Neura Networks in Wireess Sensor Networks Peng Guan and Xiaoin Li Scaabe Software Systems Laboratory, Department of Computer Science Okahoma State University,

More information

A Compact Wide Bandpass Filter based on Substrate Integrated Waveguide (SIW) Structure

A Compact Wide Bandpass Filter based on Substrate Integrated Waveguide (SIW) Structure Journa of Communication Engineering, Vo. 4, No., Juy-December 5 3 A Compact Wide Bandpass Fiter based on Substrate Integrated Waveguide (SIW) Structure Mostafa Danaeian, Ai Ganji ashkezari, Kambiz Afrooz

More information