IMPLEMENTING LOUDNESS MODELS IN MATLAB. J. Timoney, T. Lysaght Marc Schoenwiesner L. McManus

Size: px
Start display at page:

Download "IMPLEMENTING LOUDNESS MODELS IN MATLAB. J. Timoney, T. Lysaght Marc Schoenwiesner L. McManus"

Transcription

1 IMPLEMENTING LOUDNESS MODELS IN MATLAB J. Timoey, T. Lysaght Marc Schoewieser L. McMaus Dept. of Computer Sciece Dept. of Zoology Dept. of Elec. Egieerig NUI Mayooth, Mayooth, Co. Uiversity of Leipzig, Leipzig, DIT, Dubli, Irelad Kildare, Irelad Germay ABSTRACT I the field of psychoacoustic aalysis the goal is to costruct a trasformatio that will map a time waveform ito a domai that best captures the respose of a huma perceivig soud. A key elemet of such trasformatios is the mappig betwee the soud itesity i decibels ad its actual perceived loudess. A umber of differet loudess models exist to achieve this mappig. This paper examies implemetatio strategies for some of the more well - kow models i the Matlab software eviromet. 1. INTRODUCTION The primary tool i the field of audio for the time - frequecy aalysis of soud is the Spectrogram. It is popular because it is computatioally fast ad its output is well uderstood. However, sice the 1990 s much work has bee carried out o the developmet of better tools for soud aalysis that make more efforts to take ito cosideratio its psychoacoustic properties. This has bee drive by the availability of the techology to fully implemet the results of psychoacoustic research that had bee published over the decades previously combied with the desire for sigificat advaces i the codig of speech ad audio sigals, the MP3 stadard beig a good example. Thus owadays, may algorithms desiged for speech ad audio processig will make referece to pyschoacoustic trasformatios. A importat limitatio of the spectrogram i this regard is maer i which the sigal itesity is displayed, geerally i Decibels SPL. While this provides a measure of objective soud itesity, it does ot properly capture the subjective impressio a soud creates o the listeer i terms of its loudess. To achieve this the sesitivity of the ear to the various soud levels of the frequecy compoets cotaied i the soud must be accouted for. This is the kid of iformatio cotaied i equal loudess curves for the huma ear [1]. These curves show that the ear is less sesitive to low frequecy souds, havig a maximum sesitivity i the regio of 3-4kHz. Employig these curves to modify the db SPL itesity display of the soud trasforms the itesity to the Pho scale, where differet frequecy compoets havig the same Pho value will have the same loudess but will have differet db SPL itesities. Oe disadvatage with the Pho scale is that it is ot directly proportioal to perceived loudess, ad thus a doublig of loudess value i Phos does ot mea a doublig of the soud loudess [2]. To this, the Soe scale was itroduced to provide a liear scale of loudess. The Soe scale ca be related to the pho scale by the equatio [3] L ( i) D i = ( D( i) 40 ) L( i) = 2, if D( i) 40 where ( i) ( i), if D i < 40 L is the perceived loudess of the critical bad i, ad D is the spread critical spectrum i terms of phos i bad i. The coversio from a time domai sigal to a represetatio that describes its loudess i terms of Soe is outlied i Figure 1 Speech waveform Time-Frequecy Decompositio ad Ear Respose Compesatio Figure 1: Block Diagram of loudess modelig procedure [4] Σ Total Loudess Specific Loudess There are various approaches to implemetig the differet stages of the Loudess model i Figure 1. The basic procedure is to first trasform the sigal ito the time-frequecy domai. The frequecy aalysis poits specified will have a relatio to the critical bad resolutio of the ear. Time ad Frequecy maskig may be accouted for ad compesatio carried out for compoets below the threshold of audibility. This stage is followed by a coversio from the itesity levels of each time-frequecy slice to specific loudess levels for each frequecy bad that are the summed to give the overall loudess for each time slice. I this paper, three implemetatio strategies are examied: (1) 1. A direct implemetatio based o a time -frequecy decompositio, a mappig from db SPL to Pho followed by a direct implemetatio of equatio (1). 2. Three implemetatios of Zwicker s model. 3. The Moore ad Glasberg Loudess model DAFX-1

2 The sources for some of the implemetatios discussed are speech quality measuremet strategies. Specifically, the time -frequecy decompositios ad loudess coversio from the EMBSD [3], PSQM [10] ad PEAQ [12] measures are ivestigated. 2.1 Calibratio 2. MODEL IMPLEMETATIONS I all implemetatios the first, ad possibly most crucial, stage is the calibratio of the iput sigal. I Matlab souds typically are read i from wav files ormalize the amplitude levels of the soud to lie betwee 1 ad 1. However, this will either reflect the true recordig or playback levels of the soud. The ampl itude of soud ca be scaled to give the soud a desired value of db SPL. Whe usig db SPL to set s soud level, a value for the referece level must be chose. For air, the referece level is usually chose as 20 micropascals [5]. If the actual db SPL used whe recordig the soud is ukow, i the case of speech, if it is at a ormal level, it is reasoable to assume a coversatioal level of betwee 65 ad 70 db SPL. Thus, to scale the sigal vector y to a level of 70dB i Matlab [6], SPLmeas=70; Pref = 20e-6; y_refscaled= (y./pref); RMS=sqrt(mea(y_refscaled.^2)); SPLmat=20*log10(RMS); % dbspl i matlab c=10^((splmeas-splmat)/20); ycal=c*(y_refscaled); If the HUTear toolbox is istalled, it is also possible to use the fuctio [7], ret=pascalize(y,70); 2.2 Direct Implemetatio of Loudess Represetatio The algorithm for the direct implemetatio is take from the EMBSD speech quality measure. The sigal is separated ito frames, each oe widowed with a Haig fuctio ad the power spectral desity obtaied. Each power spectrum is partitioed ito critical bads of width oe bark, with a upper frequecy limit of 3.4 khz. I [3] Schroeder s spreadig fuctio model is applied to iclude the effects of frequecy maskig across the critical bads. The loudess level of each critical bad i uits of pho is obtaied usig a set of equal-loudess cotours take from the literature ad db itesity values that lie i betwee the published cotours are iterpolated to get the correct loudess level [3]. These loudess levels are the coverted to soe usig equatio (1). NFFT=1024;NOVERLAP=0; Bf=1:18; [Yxx,f] = psd(ycal,nfft,fs,nfft,0); Yxx_scale=(2.*Yxx)./NFFT; [B_XX,bark]=bk_frq02(Bf,f,Yxx_scale); C_XX=spread_ew(Bf,B_XX); P_XX=dbtopho(C_XX); S_XX=phtos(P_XX); N_mbsd(l)=sum(S_XX); The Matlab programs are as give i [3]. However, it was foud that it was ecessary to make adjustmets to the program dbtopho.m. First of all, i the program code a file amed equal.mat is called as it holds the trascribed equal loudess cotours. However, the C program versio i the thesis also cotais the cotour values i a array, which ca be copied for use with Matlab. Furthermore, the lies below, which were foud to cause errors o occasio, j = 1; while T(i) >= eqlco(j,i) j = j + 1; if j == 16 fpritf(1,'error\') if j == 1 P_XX(i) = phos(1); ca be replaced with [I]=fid(T(i)<=equalco(:,i)); if mi(i)==1 P_XX(i)=phos(1); 2.3 Implemetatios based o Zwicker s model Possibly the most well-kow ad popular model of loudess is the oe proposed by Zwicker. It has formed part of a iteratioal stadard [8], ad has bee adopted as for use i a umber of ITU stadards o speech ad audio quality. However, differeces exist i the implemetatios Implemetatio of the DIN 45631/ISO532B Loudess Model This Matlab program was a direct coversio from the basic program provided i [6]. This implemetatio uses a filterbak of oe-third-octave filters for the spectral decompositio of the sigal, however, a drawback is that this yields oly a rough approximatio to the shape of the auditory filters ad the locatio of their ceter frequecies. The equatio for the specific loudess N i Soe/Bark of a the db SPL soud level L i a oe-third-octave bad is give G by [9] 0.025L 1 ETQ 0.1 LG ao LETQ N = (2) 4 The trasmissio of freefield soud to our hearig system through the head ad the outer ear is described as atteuatio a. The 0 excitatio threshold i quiet is. Values for these two L ETQ parameters were give i [8]. To ru the implemetatio give i [6], the sequece of Matlab commads is [Yxx,f]=PowSpec(Pref.*ycal,fs,df); [YdB, err]=covert2db(yxx, 1); I this implemetatio, the power spectral desity of the sigal Yxx is foud without the factor Pref take ito accout, ad DAFX-2

3 oly whe this quatity is coverted to db is it icluded, i.e. iside Covert2dB.m YdB=10*log10((cal^2)*Yxx/(Pref^2)); The other iput argumets to PowSpec are fs ad df, which are the samplig frequecy ad the frequecy resolutio respectively. The third-octave-bad filters are geerated usig the code below, the filter desig is by a program obtaied from the mathworks called Oct2dsg.m. f is a output of PowSpec. Scalig of the filter resposes is carried out to esure o eergy gai i itroduced ito the sigal. The filtered bads of the sigal power spectrum is give as Lt. %% Filter [H, err]=geeratefilters_16000(f); H= *H; for ik=1:24 Lt(ik)=10*log10(sum((10.^(YdB/10)).*(abs(H(ik,: ).^2)))); The fial fuctio call returs the total loudess N ad specific loudess vector Ns. The iput MS defies the soud field ad by default is set to a free field, i.e., MS = 'f'. %% Calculate Loudess [N, Ns, err]=din45631_16000(lt, MS); Zwicker s Loudess model as used i PSQM The PSQM algorithm was adopted by the ITU for speech quality assessmet [10], but oly recetly has it bee replaced by the PESQ algorithm [11]. The equatio used for the implemetatio of Zwicker s model is differet to (2). The specific loudess LX ( f ) is give by γ γ P 0 f PPX f LX f = S (3) l 0.5 P0 f where f is the absolute hearig threshold S is a scalig factor, l P 0 ( f ) at frequecy f ad PPX is the Pitch Power Desity at frequecy f for frame. γ is a costat. The Pitch power desities are the power spectrum of a sigal frame warped to the bark scale with a resolutio of Bark, with scalig relative to the badwidth i Hertz. Accordig to the PSQM documet [10], S = ad γ = , l [Yxx,f]=psd(ycal,NFFT,fs,NFFT,NOVERLAP); deltaz=0.312; for i=2:57 deltaf=ffreqs(i)-ffreqs(i-1); scal=(deltaf./deltaz); idice=(ffreqs(i-1) <= f & f < Ffreqs(i)); idex=fid(idice>0); idex_first=idex(1); idex_last=idex(); PPX(i-1)=(scal./(idex_lastidex_first+1)).*sum(Yxx(Ffreqs(i-1) <= f & f < Ffreqs(i))); Lx=Sl.*(P0).^gamma.*((( *PPX./P0).^gamma)-1); Lx(fid(Lx<0))=0; N_pseq=sum(Lx);%total loudess Zwicker s Loudess model as used i PEAQ This is the most sophisticated of the psycho-acoustic decompositios [12]. The power spectrum of each frame is weighted by the frequecy respose of the outer ad middle ear derived from a model. The power spectral eergies are the grouped ito Critical bads, spaced at 0.25 Bark. A offset is the added to the Critical bad eergies to compesate for iteral oise geerated i the ear. A triagular (i db) spreadig fuctio is used to implem et spreadig i the frequecy domai. E ~ is the spread excitatio SR patter. Ulike the PSQM algorithm the values for the excitatio threshold i PEAQ was computed usig a model descriptio [12], with c a costat that is set to , 0.23 ~ 0.23 E t f s f ESR f (4) LX f = 1 + c s f 1 s f E0 Et f where, i terms of db, the threshold idex is give by 2 1 f 1 f s f = ta 0.75 ta (5) db the excitatio threshold is 0.8 E tdb ( f ) = 3.64( f 1000) (6) A complete implemetatio of this fuctio is give i [13]. The variables X2 are the power spectrum of the frame, Eb is the bark warped spectrum, E is the spectrum followig the applicatio of spreadig, ad Lx ad Ntot are the specific loudess ad total loudess respectively. The fuctios amed i the code below are the same as described i [13] but with the additioal iput parameters of sigal legth le ad samplig frequecy Fs. X2=PQDFTFrame(ycal,le); Eb=PQgroupCB(X2,'Basic',le,Fs); E=PQspreadCB(Eb,'Basic',Fs); [Ntot,LX]=PQLoud(E,'Basic','FFT',Fs); N_tot(l)=Ntot; 2.4 Loudess Model of Moore ad Glasberg The model of Moore ad Glasberg [14] is differet to that of Zwicker i that the auditory frequecy scale used is the equivalet rectagular badwidth (ERB) ad the equatio for the specific loudess i a filter bad is α α N ' C E sig E (7) where bad, Esig = ThQ is the excitatio patter withi a particular frequecy E is the excitatio at the hearig threshold, ad C ad ThQ α are costats. A Matlab implemetatio was proposed by [15]. It relied o the HUTear toolbox [7] to calculate the excitatio patters. Assumig a gammatoe filterbak with 128 filters, the suggested model iput parameters were model.fs=fs; [f,b,cetfreq]=make_cgtbak(128,fs,200,6); DAFX-3

4 save gt128_test f b CetFreq; model.cochlea.fb.file='gt128_test.mat'; % model.cochlea.asymmcomp=1; model.haircell.rcf.r='half'; model.haircell.rcf.c=0.7; model.haircell.rcf.f='1khz'; model.eural.fuctio='mea'; For each frame the excitatio patter of the sigal was geerated usig the AudMod fuctio from the toolbox [7], Esig=AudMod(frame(:,l),model); Similarly, to geerate the excitatio patter at the hearig threshold, [CrctLiPwr, frqnpts, CrctdB] = OutMidCrct2('MAF',128,Fs); MAF = iterp1_ext(frqnpts,crctdb,cetfreq,'liear','ex trap'); for i=1:legth(cetfreq) toes(i,:)=pascalize(si(2.*pi.*(0:frame_le- 1).*CetFreqs(i)./Fs),MAF(i)); ; Ethq=AudMod(sum(toes),model); Oce the excitatio patters are kow, the specific ad total loudess ca be calculated. To fid the total loudess from the specific loudess, scalig is applied based o the badwidth of the ERB filters before summig. N=C.*(Estim.^alpha-Ethq.^alpha); N(fid(N<0))=0; EarQ = 1/ ; mibw = 24.7; order = 1; b = 1.019; ERBwidth = ((CetFreq/EarQ).^order + mibw^order).^(1/order); totalloudess=sum((n.*erbwidth)'); 3. OUTPUT CALIBRATION AND TESTING I the cases of the MBSD loudess model, the PSQM loudess model ad the Moore ad Glasberg loudess model calibratio was foud to be ecessary. The Matlab fuctio lsqcurvefit.m from the optimizatio toolbox was used. Oe of its requiremets is a fuctio ame withi its iput argumets, ad usig the MBSD loudess model as a example, it was be writte i the form fuctio [l]= mbsd_cal(coef,s_xx) l=diag(sqrt(coef.*s_xx)*sqrt(coef.*s_xx)'); where coef is the calibratio parameter, S_XX is excitatio used to compute the specific loudess ad l is the total loudess. 512-poit Siewaves of frequecy 1000Hz ad samplig frequecy 16kHz that were calibrated to be { 40,50,60,70,80} db SPL that should have a total loudess of { 1,2,4,8,16} were used. I the case of the MBSD loudess model S_XX eeds to be called by a factor For the PSQM model, 4 S l = ad γ = For the Moore ad Glasberg model C = ad α = Model 40db 50dB 60dB 70dB 80dB MBSD DIN PSQM PEAQ MooreGlas Table 1: Iput Siusoid SPL Values ad Models outputs i Soes The total loudess i Soe produced by each model for these siewaves is give i Table 1. It ca be see from the table that oe of the measures produce the exact figure for total loudess but that all are approximately close to the expected value. 3. CONCLUSIONS This paper has preseted Matlab implemetatios of a umber of loudess models. Furthermore, where ecessary the issue of model calibratio was addressed. Fially, results were preseted to demostrate the model output for a siewaves of various db SPL levels. 4. REFERENCES [1] Gelfad, S.A., Hearig: A Itroductio to Psychological ad Physiological Acoustics, Marcel Dekker, [2] [3] Woho, Y., Ehaced modified bark spectral distortio (EMBSD):A objective speech quality measure based o audible distortio ad cogitio model, Ph.D. thesis, Temple Uiversity, Ft. Washigto, USA, [4] Appell, J., et al., Review of loudess models for ormal ad hearig-impaired listeers based o the model proposed by Zwicker, Audiologische Akustik, 40, No.(2), [5] wer.pdf [6] [7] [8] Zwicker, E., Fastl, H., ad Dallmayr, C., BASIC program for calculatig the loudess of souds from their 1/3 oct bad spectra accordig to ISO 532 B, Acustica 55, 1984, pp [9] Quast, H., Absolute Perceived Loudess of Speech, Proceedigs of the 7th Joit Symposium o Neural Computatio, USC, [10] ITU Recommatio, P.861 Objective Measuremet of Telephoe Bad ( Hz) Speech Codecs (PSQM) [11] ITU Recommatio, P.862 Perceptual Evaluatio of Speech Quality (PESQ), the New ITU Stadard for Ed-to- Speech Quality Assessmet, [12] Thiede, T., Perceptual Audio Quality Assessmet usig a No- Liear Filter Bak, Ph.D. thesis, Techische Uiversitat Berli, Berli, Germay, [13] Kabal, P., A Examiatio ad Iterpretatio of ITU -R BS.1387: Perceptual Evaluatio of Audio Quality, TSP Lab DAFX-4

5 Techical Report, Dept. Electrical & Computer Egieerig, McGill Uiversity, May [14] Moore, B., Glasberg, B., Baer, T., A model for the predictio of thresholds, loudess ad partial loudess, J. Audio Eg. Soc. 45, 1997, pp [15] DAFX-5

Measurement of Equivalent Input Distortion AN 20

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

More information

APPLICATION NOTE UNDERSTANDING EFFECTIVE BITS

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

More information

Encode Decode Sample Quantize [ ] [ ]

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

More information

COMPRESSION OF TRANSMULTIPLEXED ACOUSTIC SIGNALS

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

More information

LINEAR-PHASE FIR FILTERS: THE WINDOWING METHOD

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

More information

PRACTICAL FILTER DESIGN & IMPLEMENTATION LAB

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

More information

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

Massachusetts Institute of Technology Dept. of Electrical Engineering and Computer Science Fall Semester, Introduction to EECS 2. Massachusetts Istitute of Techology Dept. of Electrical Egieerig ad Computer Sciece Fall Semester, 006 6.08 Itroductio to EECS Prelab Exercises Pre-Lab#3 Modulatio, demodulatio, ad filterig are itegral

More information

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

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

More information

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

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

More information

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

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

More information

信號與系統 Signals and Systems

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

More information

Application of Improved Genetic Algorithm to Two-side Assembly Line Balancing

Application of Improved Genetic Algorithm to Two-side Assembly Line Balancing 206 3 rd Iteratioal Coferece o Mechaical, Idustrial, ad Maufacturig Egieerig (MIME 206) ISBN: 978--60595-33-7 Applicatio of Improved Geetic Algorithm to Two-side Assembly Lie Balacig Ximi Zhag, Qia Wag,

More information

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

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

More information

信號與系統 Signals and Systems

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

More information

CHAPTER 5 A NEAR-LOSSLESS RUN-LENGTH CODER

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

More information

PROJECT #2 GENERIC ROBOT SIMULATOR

PROJECT #2 GENERIC ROBOT SIMULATOR Uiversity of Missouri-Columbia Departmet of Electrical ad Computer Egieerig ECE 7330 Itroductio to Mechatroics ad Robotic Visio Fall, 2010 PROJECT #2 GENERIC ROBOT SIMULATOR Luis Alberto Rivera Estrada

More information

Mid-level representations for audio content analysis *Slides for this lecture were created by Anssi Klapuri

Mid-level representations for audio content analysis *Slides for this lecture were created by Anssi Klapuri Mid-level represetatios for audio cotet aalysis *Slides for this lecture were created by Assi Klapuri Represetatios 1 Sources: Ellis, Rosethal, Mid-level represetatios for Computatioal Auditory Scee Aalysis,

More information

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

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

More information

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

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

More information

Design of FPGA Based SPWM Single Phase Inverter

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

More information

Wavelet Transform. CSEP 590 Data Compression Autumn Wavelet Transformed Barbara (Enhanced) Wavelet Transformed Barbara (Actual)

Wavelet Transform. CSEP 590 Data Compression Autumn Wavelet Transformed Barbara (Enhanced) Wavelet Transformed Barbara (Actual) Wavelet Trasform CSEP 59 Data Compressio Autum 7 Wavelet Trasform Codig PACW Wavelet Trasform A family of atios that filters the data ito low resolutio data plus detail data high pass filter low pass filter

More information

Fingerprint Classification Based on Directional Image Constructed Using Wavelet Transform Domains

Fingerprint Classification Based on Directional Image Constructed Using Wavelet Transform Domains 7 Figerprit Classificatio Based o Directioal Image Costructed Usig Wavelet Trasform Domais Musa Mohd Mokji, Syed Abd. Rahma Syed Abu Bakar, Zuwairie Ibrahim 3 Departmet of Microelectroic ad Computer Egieerig

More information

Compound Controller for DC Motor Servo System Based on Inner-Loop Extended State Observer

Compound Controller for DC Motor Servo System Based on Inner-Loop Extended State Observer BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volume 6, No 5 Special Issue o Applicatio of Advaced Computig ad Simulatio i Iformatio Systems Sofia 06 Prit ISSN: 3-970; Olie ISSN:

More information

Problem of calculating time delay between pulse arrivals

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

More information

AUDIO QUALITY MEASUREMENTS IN COMUNICATION SYSTEMS

AUDIO QUALITY MEASUREMENTS IN COMUNICATION SYSTEMS AUDIO QUALITY MEASUREMETS I COMUICATIO SYSTEMS Ivo Matelja Faculty of electrical egieerig, Uiversity of Split R. Bosovica bb, 000 Split, Croatia (ivo.matelja@fesb.hr) Abstract: ITU gives P-class recommedatios

More information

11.11 Two-Channel Filter Banks 1/27

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

More information

E X P E R I M E N T 13

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

More information

EECE 301 Signals & Systems Prof. Mark Fowler

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

More information

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

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

More information

4. INTERSYMBOL INTERFERENCE

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

More information

Analysis of SDR GNSS Using MATLAB

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

More information

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

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

More information

Voice Command Recognition System Based on MFCC and VQ Algorithms

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

More information

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

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

More information

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

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

More information

H2 Mathematics Pure Mathematics Section A Comprehensive Checklist of Concepts and Skills by Mr Wee Wen Shih. Visit: wenshih.wordpress.

H2 Mathematics Pure Mathematics Section A Comprehensive Checklist of Concepts and Skills by Mr Wee Wen Shih. Visit: wenshih.wordpress. H2 Mathematics Pure Mathematics Sectio A Comprehesive Checklist of Cocepts ad Skills by Mr Wee We Shih Visit: weshih.wordpress.com Updated: Ja 2010 Syllabus topic 1: Fuctios ad graphs 1.1 Checklist o Fuctios

More information

Radar emitter recognition method based on AdaBoost and decision tree Tang Xiaojing1, a, Chen Weigao1 and Zhu Weigang1 1

Radar emitter recognition method based on AdaBoost and decision tree Tang Xiaojing1, a, Chen Weigao1 and Zhu Weigang1 1 Advaces i Egieerig Research, volume 8 d Iteratioal Coferece o Automatio, Mechaical Cotrol ad Computatioal Egieerig (AMCCE 7) Radar emitter recogitio method based o AdaBoost ad decisio tree Tag Xiaojig,

More information

Color gamut of SOCS and its comparison to Pointer's gamut

Color gamut of SOCS and its comparison to Pointer's gamut Color gamut of SOCS ad its compariso to Poiter's gamut Masao Iui*, Tomotaka Hirokaw, oshihiko Azum, ad Johji Tajim* * Tokyo Polytechic Uiversity 58 Iiyama, Atsugi, Kaagawa 24-297, Japa ** Nagoya City Uiversity

More information

Measurements of the Communications Environment in Medium Voltage Power Distribution Lines for Wide-Band Power Line Communications

Measurements of the Communications Environment in Medium Voltage Power Distribution Lines for Wide-Band Power Line Communications Measuremets of the Commuicatios viromet i Medium Voltage Power Distributio Lies for Wide-Bad Power Lie Commuicatios Jae-Jo Lee *,Seug-Ji Choi *,Hui-Myoug Oh *, Wo-Tae Lee *, Kwa-Ho Kim * ad Dae-Youg Lee

More information

A SELECTIVE POINTER FORWARDING STRATEGY FOR LOCATION TRACKING IN PERSONAL COMMUNICATION SYSTEMS

A SELECTIVE POINTER FORWARDING STRATEGY FOR LOCATION TRACKING IN PERSONAL COMMUNICATION SYSTEMS A SELETIVE POINTE FOWADING STATEGY FO LOATION TAKING IN PESONAL OUNIATION SYSTES Seo G. hag ad hae Y. Lee Departmet of Idustrial Egieerig, KAIST 373-, Kusug-Dog, Taejo, Korea, 305-70 cylee@heuristic.kaist.ac.kr

More information

Single Bit DACs in a Nutshell. Part I DAC Basics

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

More information

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

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

More information

WAVE-BASED TRANSIENT ANALYSIS USING BLOCK NEWTON-JACOBI

WAVE-BASED TRANSIENT ANALYSIS USING BLOCK NEWTON-JACOBI WAVE-BASED TRANSIENT ANALYSIS USING BLOCK NEWTON-JACOBI Muhammad Kabir McGill Uiversity Departmet of Electrical ad Computer Egieerig Motreal, QC H3A 2A7 Email: muhammad.kabir@mail.mcgill.ca Carlos Christofferse

More information

ECE 333: Introduction to Communication Networks Fall Lecture 4: Physical layer II

ECE 333: Introduction to Communication Networks Fall Lecture 4: Physical layer II ECE 333: Itroductio to Commuicatio Networks Fall 22 Lecture : Physical layer II Impairmets - distortio, oise Fudametal limits Examples Notes: his lecture cotiues the discussio of the physical layer. Recall,

More information

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

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

More information

Lecture 4: Frequency Reuse Concepts

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

More information

Nonlinear System Identification Based on Reduced Complexity Volterra Models Guodong Jin1,a* and Libin Lu1,b

Nonlinear System Identification Based on Reduced Complexity Volterra Models Guodong Jin1,a* and Libin Lu1,b 6th Iteratioal Coferece o Electroics, Mechaics, Culture ad Medicie (EMCM 205) Noliear System Idetificatio Based o Reduced Complexity Volterra Models Guodog Ji,a* ad Libi Lu,b Xi a research istitute of

More information

Intermediate Information Structures

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

More information

FPGA Implementation of the Ternary Pulse Compression Sequences

FPGA Implementation of the Ternary Pulse Compression Sequences FPGA Implemetatio of the Terary Pulse Compressio Sequeces N.Balaji 1, M. Sriivasa rao, K.Subba Rao 3, S.P.Sigh 4 ad N. Madhusudhaa Reddy 4 Abstract Terary codes have bee widely used i radar ad commuicatio

More information

CHAPTER 6 IMPLEMENTATION OF DIGITAL FIR FILTER

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

More information

LETTER A Novel Adaptive Channel Estimation Scheme for DS-CDMA

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

More information

Harnessing oversampling in correlation-coded OTDR

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

More information

Recovering low frequencies for impedance inversion by frequency domain deconvolution

Recovering low frequencies for impedance inversion by frequency domain deconvolution Recoverig low frequecies for impedace iversio by frequecy domai decovolutio Sia. Esmaeili*, CREWES, Uiversity of Calgary, sesmaeil@ucalgary.ca Gary. Frak. Margrave, CREWES, Uiversity of Calgary, margrave@ucalgary.ca

More information

High-Order CCII-Based Mixed-Mode Universal Filter

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

More information

Lossless image compression Using Hashing (using collision resolution) Amritpal Singh 1 and Rachna rajpoot 2

Lossless image compression Using Hashing (using collision resolution) Amritpal Singh 1 and Rachna rajpoot 2 Lossless image compressio Usig Hashig (usig collisio resolutio) Amritpal Sigh 1 ad Racha rajpoot 2 1 M.Tech.* CSE Departmet, 2 Departmet of iformatio techology Guru Kashi UiversityTalwadi Sabo, Bathida

More information

Adaptive MMSE Rake-Equalizer Receiver Design with Channel Estimation for DS-UWB System

Adaptive MMSE Rake-Equalizer Receiver Design with Channel Estimation for DS-UWB System Adaptive MMSE Rake-Equalizer Receiver Desig with Chael Estimatio for DS-UWB System Departmet of Electric Egieerig, Diwa Uiversity No.87-1, Nashi Li, Madou Tow, Taia Couty 7153, Taiwa, R.O.C. cyj@dwu.edu.tw

More information

A Novel Small Signal Power Line Quality Measurement System

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

More information

Estimation of non Distortion Audio Signal Compression

Estimation of non Distortion Audio Signal Compression Estimatio of o Distortio Audio Sigal Compressio M. BAK, S. PODOXI, V. TSIGOUZ Departmet of Commuicatio Egieerig Ceter for Techological Educatio Holo 5 Golomb street, POB 35 Holo 58, Tel: +97-3-5669 ISRAEL

More information

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

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

More information

Analytic comparison of using FFT and wavelet in IEEE a WLAN based OFDM technique

Analytic comparison of using FFT and wavelet in IEEE a WLAN based OFDM technique Aalytic compariso of usig FFT ad wavelet i IEEE 802.11.a WLAN based OFDM techique Habab Habib Alshammary, Abdel-Rahma Al-Qawasmi Abstract Modulatio techiques play a sigificat role i miimizig the effect

More information

X-Bar and S-Squared Charts

X-Bar and S-Squared Charts STATGRAPHICS Rev. 7/4/009 X-Bar ad S-Squared Charts Summary The X-Bar ad S-Squared Charts procedure creates cotrol charts for a sigle umeric variable where the data have bee collected i subgroups. It creates

More information

A SIMPLE METHOD OF GOAL DIRECTED LOSSY SYNTHESIS AND NETWORK OPTIMIZATION

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

More information

AME50461 SERIES EMI FILTER HYBRID-HIGH RELIABILITY

AME50461 SERIES EMI FILTER HYBRID-HIGH RELIABILITY PD-94595A AME5046 SERIES EMI FILTER HYBRID-HIGH RELIABILITY Descriptio The AME Series of EMI filters have bee desiged to provide full compliace with the iput lie reflected ripple curret requiremet specified

More information

Combined Scheme for Fast PN Code Acquisition

Combined Scheme for Fast PN Code Acquisition 13 th Iteratioal Coferece o AEROSPACE SCIENCES & AVIATION TECHNOLOGY, ASAT- 13, May 6 8, 009, E-Mail: asat@mtc.edu.eg Military Techical College, Kobry Elkobbah, Cairo, Egypt Tel : +(0) 4059 4036138, Fax:

More information

Unit 5: Estimating with Confidence

Unit 5: Estimating with Confidence Uit 5: Estimatig with Cofidece Sectio 8.2 The Practice of Statistics, 4 th editio For AP* STARNES, YATES, MOORE Uit 5 Estimatig with Cofidece 8.1 8.2 8.3 Cofidece Itervals: The Basics Estimatig a Populatio

More information

Subband Coding of Speech Signals Using Decimation and Interpolation

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

More information

HOW BAD RECEIVER COORDINATES CAN AFFECT GPS TIMING

HOW BAD RECEIVER COORDINATES CAN AFFECT GPS TIMING HOW BAD RECEIVER COORDINATES CAN AFFECT GPS TIMING H. Chadsey U.S. Naval Observatory Washigto, D.C. 2392 Abstract May sources of error are possible whe GPS is used for time comparisos. Some of these mo

More information

Acquisition of GPS Software Receiver Using Split-Radix FFT

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

More information

SSB Noise Figure Measurements of Frequency Translating Devices

SSB Noise Figure Measurements of Frequency Translating Devices 975 SSB oise Figure Measuremets of Frequecy Traslatig Devices. Otegi,. Garmedia, J.M. Collates, M. Sayed Electricity ad Electroics Departmet, Uiversity of the Basque Coutry, Apdo. 644, 48080 Bilbao, Spai

More information

Data Acquisition System for Electric Vehicle s Driving Motor Test Bench Based on VC++ *

Data Acquisition System for Electric Vehicle s Driving Motor Test Bench Based on VC++ * Available olie at www.sciecedirect.com Physics Procedia 33 (0 ) 75 73 0 Iteratioal Coferece o Medical Physics ad Biomedical Egieerig Data Acquisitio System for Electric Vehicle s Drivig Motor Test Bech

More information

CAEN Tools for Discovery

CAEN Tools for Discovery Applicatio Note AN2506 Digital Gamma Neutro discrimiatio with Liquid Scitillators Viareggio 19 November 2012 Itroductio I recet years CAEN has developed a complete family of digitizers that cosists of

More information

A SIMPLE METHOD OF GOAL DIRECTED LOSSY SYNTHESIS AND NETWORK OPTIMIZATION

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

More information

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

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

More information

Subscriber Pulse Metering (SPM) Detection

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

More information

Design and Construction of a Three-phase Digital Energy Meter

Design and Construction of a Three-phase Digital Energy Meter Desig ad Costructio of a Three-phase Digital Eergy Meter D.P.Chadima, V.G.R.G. Jayawardae, E.A.E.H. Hemachadra, I.N.Jayasekera, H.V.L.Hasaraga, D.C. Hapuarachchi (chadima@elect.mrt.ac.lk, geethagaj@gmail.com,era.hem@gmail.com,ishaivaka@gmail.com,lahiru_hasaraga@yahoo.com,diya_elect.uom@gmail.com)

More information

Application of Image Fusion to Wireless Image Transmission

Application of Image Fusion to Wireless Image Transmission Applicatio of Image Fusio to Wireless Image Trasmissio Liae C. Ramac ad Pramod K. Varshey EECS Departmet, Syracuse Uiversity 121 Lik Hall, Syracuse, NY 13244 Email: lcramac@mailbox.syr.edu, varshey@cat.syr.edu

More information

Pulse-echo Ultrasonic NDE of Adhesive Bonds in Automotive Assembly

Pulse-echo Ultrasonic NDE of Adhesive Bonds in Automotive Assembly ECNDT 6 - Poster 7 Pulse-echo Ultrasoic NDE of Adhesive Bods i Automotive Assembly Roma Gr. MAEV, Sergey TITOV, Uiversity of Widsor, Widsor, Caada Abstract. Recetly, adhesive bodig techology has begu to

More information

High Speed Area Efficient Modulo 2 1

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

More information

AkinwaJe, A.T., IbharaJu, F.T. and Arogundade, 0.1'. Department of Computer Sciences University of Agriculture, Abeokuta, Nigeria

AkinwaJe, A.T., IbharaJu, F.T. and Arogundade, 0.1'. Department of Computer Sciences University of Agriculture, Abeokuta, Nigeria COMPARATIVE ANALYSIS OF ARTIFICIAL NEURAL NETWORK'S BACK PROPAGATION ALGORITHM TO STATISTICAL LEAST SQURE METHOD IN SECURITY PREDICTION USING NIGERIAN STOCK EXCHANGE MARKET AkiwaJe, A.T., IbharaJu, F.T.

More information

Logarithms APPENDIX IV. 265 Appendix

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

More information

Delta- Sigma Modulator with Signal Dependant Feedback Gain

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

More information

Spread Spectrum Signal for Digital Communications

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

More information

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

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

More information

Cascaded Feedforward Sigma-delta Modulator for Wide Bandwidth Applications

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

More information

Estimation of reflection location by the correlation coefficient function

Estimation of reflection location by the correlation coefficient function Acoustics 8 Paris Estimatio of reflectio locatio by the correlatio coefficiet fuctio H. Shibayama a, T. Araya b, Y. Maabe b ad E. Oarura b a Shibaura Istitute of Techology, 3-7-5, Toyosu, Koto-u, 35-8548

More information

Chapter 1 The Design of Passive Intermodulation Test System Applied in LTE 2600

Chapter 1 The Design of Passive Intermodulation Test System Applied in LTE 2600 Chapter The Desig of Passive Itermodulatio Test System Applied i LTE 600 Gogli, Wag Cheghua, You Wejue 3, Wa Yuqiag 4 Abstract. For the purpose of measurig the passive itermodulatio (PIM) products caused

More information

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

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

More information

A Simplified Method for Phase Noise Calculation

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

More information

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

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

More information

SIDELOBE SUPPRESSION IN OFDM SYSTEMS

SIDELOBE SUPPRESSION IN OFDM SYSTEMS SIDELOBE SUPPRESSION IN OFDM SYSTEMS Iva Cosovic Germa Aerospace Ceter (DLR), Ist. of Commuicatios ad Navigatio Oberpfaffehofe, 82234 Wesslig, Germay iva.cosovic@dlr.de Vijayasarathi Jaardhaam Muich Uiversity

More information

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

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

More information

Procedia - Social and Behavioral Sciences 128 ( 2014 ) EPC-TKS 2013

Procedia - Social and Behavioral Sciences 128 ( 2014 ) EPC-TKS 2013 Available olie at www.sciecedirect.com ScieceDirect Procedia - Social ad Behavioral Scieces 18 ( 014 ) 399 405 EPC-TKS 013 Iductive derivatio of formulae by a computer Sava Grozdev a *, Veseli Nekov b

More information

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

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

More information

LAB 7: Refractive index, geodesic lenses and leaky wave antennas

LAB 7: Refractive index, geodesic lenses and leaky wave antennas EI400 Applied Atea Theory LAB7: Refractive idex ad leaky wave ateas LAB 7: Refractive idex, geodesic leses ad leaky wave ateas. Purpose: The mai goal of this laboratory how to characterize the effective

More information

OVERCOMPLETE BLIND SOURCE SEPARATION BY COMBINING ICA AND BINARY TIME-FREQUENCY MASKING

OVERCOMPLETE BLIND SOURCE SEPARATION BY COMBINING ICA AND BINARY TIME-FREQUENCY MASKING OVERCOMPLETE BLIND SOURCE SEPARATION BY COMBINING ICA AND BINARY TIME-FREQUENCY MASKING Michael Syskid Pederse 1,2, DeLiag Wag 3, Ja Larse 1 ad Ulrik Kjems 2 1 Iformatics ad Mathematical Modellig, Techical

More information

AME28461 SERIES EMI FILTER HYBRID-HIGH RELIABILITY

AME28461 SERIES EMI FILTER HYBRID-HIGH RELIABILITY PD-94597A AME28461 SERIES EMI FILTER HYBRID-HIGH RELIABILITY Descriptio The AME Series of EMI filters have bee desiged to provide full compliace with the iput lie reflected ripple curret requiremet specified

More information

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

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

More information

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

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

More information

An Adaptive Image Denoising Method based on Thresholding

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

More information

Antenna Diversity Techniques for a Single Carrier System with Frequency Domain Equalization An Overview

Antenna Diversity Techniques for a Single Carrier System with Frequency Domain Equalization An Overview Atea Diversity Techiques for a Sigle Carrier System with Frequecy Domai Equalizatio A Overview. Witschig, G. Strasser,. Weigel, A. Spriger Istitute for Commuicatios ad Istitute for Techical Electroics

More information