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

Size: px
Start display at page:

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

Transcription

1 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 PHONE : FAX : gycho@ms.kyughee.ac.kr Abstract The compressio techique is required to icrease the efficiecy of commuicatio chael. The LZW(Lempe1 Ziv Welch) algorithm is used as a compressio algorithm i commuicatio chael. The LZW algorithm, however, has some redudacies over Hageul text ad voice. Thus, i this paper, the VDI-LZW(Voice Data Itegrated LZW) algorithm that decreases the redudacies of the LZW algorithm is suggested for efficiet compressio of Hageul text ad voice. The VDI-LZW algorithm uses both the codeword of the complete Hageul ad the variable legth codeword methodology i data compressio. O the other had, i voice compressio, it uses the differetial method that reduces the codeword size as well as the legth of repeated strig. The, the repetitio ratio is icreased. Accordig to the simulatio results, it ca be see that the performace of the proposed compressio algorithm is better by 4% to 18% i data compressio ratio ad is better by 35% to 44% i voice compressio ratio tha that of the covetioal modified LZW algorithms. I. Itroductio Recetly, due to the progress ad icreasig variety of telecommuicatio service, the amout of data trasfemd through the commuicatio chael is beig icreased rapidly. Therefore, the issues o the efficiet trasmissio mechaism of various media stream is actively ivestigated. While there are may studies o the compressio of data traffic, compressio of voice stream is ot much studied ulike the speech codig such as waveform coder ad vocoder. So, i this paper, the simple commo compressio algorithm which could be used to maximize the efficiecy of the voice/data itegrated multiplexer is studied. May techiques about data compressio are beig studied owaday. For example, statistical ad uiversal compressio techiques are beig studied vigorously. The former are based o the probability of data geeratio, ad the latter are idepedet the probability of data geeratio. Also, LZW compressio techique based o uiversal compressio techique is recommeded with V.42 bis compressio algorithm by CCITT, because of its good efficiecy. However, this LZW compressio techique has some redudacies. That is. the size of compressed data is larger tha primary data i early stage ad the bit stream of output codeword icludes.5 garbage bit i average case. Also, because the codeword is suitable oly to Eglish, LZW algorithm has some redudacies i 2 bytes Hageul which is Korea character. To reduce the redudacy of output bit stream, the VV-LZW (Variable-to-Variable LZW) algorithm is suggested. Moreover, to reduce the redudacy of Hageul, LZWH(L2W Hageul) is suggested. However, these algorithms could ot completely reduce those redudacies. O the other had, the covetioal data compressio. algorithms have ot take ito accout voice traffic. Whe the voice traffic is sampled usig 64k bps PCM ecoder, its repetitio cycle becomes more tha 8 samplesc21. Thus, the covetioal data compressio algorithms which have 2 characters i strig is iefficiet for voice traffic which has log repetitio cycle. Therefore, i this paper, the differetial method is applied to the PCM coded voice traffic, ad the compressio is doe based o LZW compressio algorithm. I this paper, i order to achieve efficiet compressio ratio i the voice/data itegrated multiplexer, the ew compressio algorithm which could compesate for these iefficiecies of the covetioal compressio algorithm is proposed ad aalyzed through computer simulatio. Followig this itroductio, i sectio 2, the LZW compressio algorithm ad the covetioal modified compressio algorithms are surveyed. Also, i sectio 3, the ew compressio algorithm which reduces the redudacies of the covetioal algorithm is proposed. Moreover, i sectio 4, the ewly proposed compressio algorithm is compared with the covetioal algorithms through the computer simulatio. Fially, coclusios are made i sectio 5. II. The Covetioal Compressio Algorithms ad Problems 1. LZW algorithm LZW(Lempe1 Ziv Welch) is a algorithm that uses coversio table mappig icomig strig ito the codeword. I LZW codeword table, the codeword has the prefix of strig. That is, whe there is a strig wk composed of a strig w ad a character K, K ad w are i the table. Here, K is called as exted character ad w is called as prefix strig~ll,~31,~41,~51,~81,~11. LZW codeword table icludes the strigs compressed previously. It meas that the strigs of codeword table have bee traied already, ad that the codewords table reflects the statistical property of the data stream previously applied. 1.1 The ecodig procedure of LZW algorithm The ecodig procedure of LZW algorithm is as follows. 1) The iitializig step of codeword table : Register 256 characters as the iitial codewords of $ IEEE 1438 Authorized licesed use limited to: Korea Advaced Istitute of Sciece ad Techology. Dowloaded o September 11, 29 at 11:52 from IEEE Xplore. Restrictios apply.

2 codeword table. That is, iitialize each code by ASCII character values whose rages are from to 255. Also, iitialize the codeword variable cl to ) Read the first iput character from the iput data,ad set it to the prefix (w). 3) Read the the ext iput character, ad set it to exted character (K). i) Whe o iput exists i the ext sequece, fid the codeword matched to w ad ecode it to the biary code of [log(cl+l)l bits. (Here, ~log(cl+l)l meas a miimum iteger that is bigger tha log(cl+l).) 4) Whe wk exists i the codeword table, replace wk with a ew prefix (w) ad go to step 3). 5) Whe wk does ot exist i the codeword table, fid the codeword matched to w ad ecode it to the biary code of [Iog(cl+l)l bits, the go to followig step. i ) Assig cl that is the codeword of wk to the codeword table, ad register as a ew strig. ii ) Icrease cl by 1 for the ext codeword assigmet. iii) Replace K with a ew prefix w, ad go to the step 3). 1.2 The decodig procedure of LZW algorithm The decodig procedure usually follows the reverse order of ecodig procedure. While the decodig procedure is activated, it has the same codeword table as the ecodig procedure. Also, whe ecoded codewords are released, each codeword is decoded ito a prefix strig ad a exted character by the cotets of a codeword table. The, the exted character is outputed to stack ad the prefix is decoded agai to a prefix ad a exted character. Here, whe a exted character is separated from a prefix ad outputed, it uses stack to chage the order of output characters sice the decodig order of exted characters is the reverse order of the ecodig. 2. VV(Variab1e to VariablekLZW algorithm As metioed above, i LZW algorithm, all codewords of strigs geerated durig the ecodig procedure are ecoded to a biary code of rlog(cl+l)l bits. That is, whe the value of cl is from 256 to 511, the value of codeword is ecoded ito 9 bits. Also, whe the value of cl is from 512 to 123, the value of codeword is ecoded ito 1 bits. Thus, this algorithm has much redudacies. To remove this redudacy of a output bit stream, the variable legth LZW algorithm is used. I VV-LZW, a limit value is chose amog the values from codeword to cl-1. For the codeword value betwee ad limit value, it is ecoded to a biary code of ([log cf-1) bits. Also, for the codeword value betwee limit value ad cl-1, it is ecoded to a biary code of [log(cl+l)l bits. 3. LZWH(LZW Haged) algorithm Beig applied to the Hageul text data, of course, LZW algorithm has a redudacy. Although there are various Hageul types, KSC 561, the Korea stadard IIageul type for admiistrative computer etwork, is oly cosidered. I KSC 561, the umber of the code assiged to Hageul is , ad it is possible to express Haged by usig 12 bits. However, LZW algorithm uses 16 bits. Thus, there are some redudacies i applyig LZW algorithm to the KSC 561 Hageul code. LZWH algorithm is proposed to reduce those redudacies. The first step of this algorithm is to select 47 characters used most frequetly amog the 235 KSC Hageul characters. The, register these characters as iitial codewords. If Haged codes are etered, they are ecoded by the Haged compressio procedure. Otherwise, they are ecoded by the geeral compressio procedure. 4. The problem of voice compressio LZW ecodig algorithm takes ito accout oly Eglish text. So, while it is very efficiet i data compressio, it is iefficiet i voice compressio. Thus, to compesate for this iefficiecy, the ew voice compressio algorithm is required. a. The New Ecodig Algorithm From the previous discussio, it could be see that the redudacy for output bit stream could be removed, but the redudacy for Haged code has still remaied i the case of applyig VV-LZW algorithm. Also, it could be see that the redudacy for Hageul code could be removed, but the redudacy for output bit stream has still remaied i the case of applyig LZWH algorithm. Moreover, It is't suitable to use the previous data compressio algorithm for voice compressio. The proposed VDI-LZW algorithm could reduce these two redudacies which VV-LZW ad LZWH have. Sice the separate chaels are used for each of the voice ad data streams i the voice/data itegrated multiplexer, VDI-LZW algorithm applies the voice ecodig algorithm to the voice chael ad the data ecodig algorithm to the data chael. After ecodig is doe, ecoded bits are moved to multiplexer ad trasmitted to the receiver. The, the receiver demultiplexes multiplexed voice ad data, ad decodes the data ad voice by usig voice ad data decodig algorithm, ad trasmits voice ad data to the voice ad the data chael respectively. 1. Iitializig step I the iitializatio step, register 256 ASCII codes ad 47 complete Haged characters beig used most frequetly i the codeword table. The, iitialize cl with 726 to idicate the ext character that the codeword to be registered should be iserted ito the 726th row off the codeword table. I the case of voice, register the codeword of 64 codes ad the iitialize cl with 65 to idicate the ext character that the codeword to be registered should be iserted ito the 65th row of the codeword table. Fig. 1 shows the cofiguratio of the codeword table for the data ad voice respectively. First of alll, the frequecies of 235 complete Haged characters appearig i the file cotaiig both Hageul ad Eglish characters are computed. The, 47 characters which has higher frequecy are selected. From the aalysis result for the PCM sampled 8 bits voice samples, it could be see that Authorized licesed use limited to: Korea Advaced Istitute of Sciece ad Techology. Dowloaded o September 11, 29 at 11:52 from IEEE Xplore. Restrictios apply.

3 99% of the differeces betwee adjacet samples values is less tha 32. Therefore, the umber of codeword required is oly 64. So, it is possible to express codeword based o 6 bits ASCII Hageul codes 1 bits codewords 11 bits codewords 12 bits codewords 128 i)u bits codewords 8 bits codewords (a) Data codewords table (b) Voice codewords table Fig. 1 The cofiguratio of the codeword table for the data ad the voice 2. Ecodig Step 2.1 Data ecodig I the case of complete Hageul, the first byte is assiged from BO to C8 ad the secod byte is assiged from A1 to FE i hexadecimal. So, the discrimiatio algorithm betwee the complete Hageul code ad ormal ASCII code operates as follows. 1) If the first byte is bigger tha BO ad smaller tha C8, read the secod byte. i If appropriate code value is foud, perform biay search ad retur the appropriate code value. If appropriate code value is ot foud, that is, if it is ot icluded i 47 characters, retum a geeral ASCII codes for each byte. ii) If the secod byte is ot icluded i rage from A1 to FE, retur a geeral ASCII codes for each byte. 2) If the first byte is smaller tha BO or bigger tha C8, retur a geeral ASCII code. 2.2 Voice ecodig I the case of the voice, to apply the differetial method, the followig procedure is performed. 1) After subtractig cur that is the value of the curret sample from old that is the value of the previous sample, save it as temp. Here, temp, cur ad old are variables. 2) Ivestigate the size of temp. i 5 temp < +31, Proceed to the step 3). ii) -32 < temp <, After takig 2 s complemet of temp expressed as 6 bits, proceed to the step 3). iii) temp > -16, Output 32 to idicate that temp is smaller tha -32. The, after dividig temp by 2 ad calculatig its absolute value, proceed to thc step 3). iv) temp < 159, Output 31 to idicate that temp is bigger tha +31. The, after dividig temp by 2, proceed to the step 3). 3) Retur the value of temp. 2.3 The output step of ecoded codeword To reduce the size of ecoded codewords, the followig procedures are performed i the output step of ecoded codeword. Whe ecoded codewords are released, the followig formula must be cofirmed i order to request the right strig. Here, if the umber of codewords curretly assiged is cl ad the limit value that ca reduce the size of bits is limit, followig equatio is derived. (cl+ limit) < 2r1dc1+1) -1 (11, Here, if = 2rlo~(cl+1)1, equatio (1) becomes as follows limit = d-cl-1. (2) Thus, whe codewords are chaged ito bit stream based o the compressio algorithm, if the codeword is smaller tha limit value, output the codeword expressed with rlog(cl+l)l-l bits. Otherwise, output the codeword expressed [log(cl+l)l bits. For example, whe cl is 75, the value of limits is calculated by usig equatio (2). That is, limit = = 273. Therefore, if a codeword is betwee ad 273, ecode ad output it based o 9 bits. However, if a codeword is betwee 274 ad 749 durig ecodig, add 274 to the codeword. The, ecode ad ouput based o 1 bits. Durig decodig, a codeword bit is read i 9 bits. The, if this value is smaller tha 274, the value is take as a codeword. Also, if it is bigger tha 274, codeword bit is read 1 bits ad the subtractio of 274 from read value is doe. Whe cl is 75, the example of output bit stream is show i Table I. Table I. The example of output codeword whe cl is 75 ecode codeword 1 2 output codeword bits 1 1 decimal value 1 L lv. Simulatio ad Discussios ( ) 549( ) 123( 274~749 ) I this sectio, for the performace evaluatio of the ew compressio algorithm proposed i this paper, VDI-LZW algorithm is implemeted usig C laguage i 486 PC. Also, i order to compare it with covetioal algorithms, LZW, VV-LZW, ad LZWH are implemeted by C laguage i Authorized licesed use limited to: Korea Advaced Istitute of Sciece ad Techology. Dowloaded o September 11, 29 at 11:52 from IEEE Xplore. Restrictios apply.

4 PC. Here, the text data such as papers ad reports which represets typical data stream trasferred through the commuicatio chael are cosidered. Also, for the voice data, real coversatioal speech data o the telephoe lie based o 641tbps PCM ecoder is cosidered.. Table U. The compressio ratio of data % of Hageul LZW VV-LZW 7% 56% 59% compressio ratio LZWH I I I 2.5 VDI-LZW I I 2.59 The performaces of the various compressio algorithms for text data are show i Table U. Here, it could be see that the ew compressio algorithm(vd1-lzw) has better by 4% to 22% tha that of covetioal modified LZW algorithms. Also, Fig 2 shows the graphical expressio of Table U. aoo d 1.6 $ x c I.2 1 H d a 5 OD Fig. 4 The probability of differetial code after the differetial operatio I the case of the voice, the differetial method is used to icrease the coipressio efficiecy. The differetial method coverts the PCM ecoded voice sample ito the differetial code. Fig. 3 ad 4 show the probability distributios before ad after the coversio. It could be see from Fig. 3 ad 4 that the maximum probability of the differece after the coversio is about.36 while the maximum probibality of the PCM code before the coversio is about.2. From the above results, it could be see that the covergece rate of data is icreased after coversio. Therefore, the code repetitio rate could be icreased durig the ecodig step of LZW algorithm by usig the differetial coversio. a 5 aoo 57b1b 111b8 1b43b Data Size (byte) VDl-iir Fig. 2 The compressio ratio diagram of text data Each sample of Fig. 2 shows that the differece of compressio ratio amog LZW, VV-LZW, LZWH ad VDI-LZW is big i the sample 1 ad is small i the sample 4. The reaso for this pheomeo is that the IIageul ratio of sample 1 is larger tha that of sample SO 8 &Io 6 4 coversio zoo f am a asm Size(byle) Fig 5. The compressio ratio diagram of voice Table RI. The compressio ratio of voice Table III ad Fig. 5 show the compressio ratio of each algorithm. It could be see that the performace of VDI-LZW algorithm is superior by 35% to 44% to that of the covetioal algorithm. Also, it could be see from Fig. 5 that the compressio ratio is high i the sample 2 of Fig 5 ad low i the sample 4. This pheomeo could be explaied by the 1441 Authorized licesed use limited to: Korea Advaced Istitute of Sciece ad Techology. Dowloaded o September 11, 29 at 11:52 from IEEE Xplore. Restrictios apply.

5 fact that sample 2 has smaller differece amog samples tha sample 4. Table N represets the umber of chaged samples whe the voice compressed with the VDI-LZW algorithm is decoded ito the PCM code. I Table N, it could be see that the average ratio of the chaged samples is.26%. Such a mior loss of voice sample due to the compressio is robust to the huma ears. Table lv. The umber of compressio sample 1 sample 2 sample 3 sample 4 total file size(byte1 samples chaged due to the chaged sample error rate(%) Both the compressio ratios whe the silece period exists ad the compressio ratio whe the silece period does ot exist are show i Fig 6. From this figure, the sample 1 has little silece period, ad the sample 2 icludes 4% silece period. It could be see that the compressio ratio of the VDI-LZW algorithm is icreased as silece period is larger sice code repetitio ratio is icreased as the differece betwee adjacet samples is reduced. S O O A _ 25 U U E 2 E I applied to complete Hageul code ad the variable legth codeword methodology i data compressio. Also, i voice compressio, it uses the differetial coversio method to miimize the codeword size ad the legth of repeated strig. Accorgig to the simulatio results, it could be see that the performace of VDI-LZW algorithm is superior to that of covetioal compressio algorithms by 4% to 18% i data compressio ratio. I additio, it could be see that the performace of VDI-LZW algorithm is superior to that of covetioal compressio algorithms by 35% to 44% i voice compressio ratio. Referece 111 CCITT Recommedatio V.42 bis, "Data Compressio Procedures for Data Circuit Termiatio Equipmet usig Error Correctio Procedures", CCITT, CCITT Recommedatio G.711, "Pulse Code Modulatio (PCM) of Voice Frequecies", CCITT, [31 Timothy Bell, "Modelig for Text Compressio", ACM Computig Serveys. V1.21, No.4. December Terry A.Welch,"A Techique for High-Performace Data Compressio", EEE Computer 17.6, PP [51 Edward R. Fiala,"Data Compressio with Fiite Widows", Computer of ACM, VOL 32, N.4, April [SI Y.J.JON, "A Study o the Desig of Compressio Techique i Complete Hageul Text", Iformatio Sciece CO V1.2, No.1, Sprig [71 S.I.Jug, "A Study o the improvemet of the LZW compressio algorithm", The Proceedigs Of The Korea Istitue of Commuicatio Scieces 9-8 Vol. 15 No.8 [SI HELD, "Data Compressio", WILEY, [91 Alle G, Robert M. Gray, "Vector Quatizatio ad Sigal Compressio", KLUWER ACADEMIC PUBLISHERS, [lo] JACOB ZIV, ABRAHAM LEMPEL, "Compressio of Idividual Sequeces via Variable-Rate Codig", IEEE TRAN. ON INFORMATION THEORY, VOL. IT-24, N.5, September 1978 a 6 a oo Fig 6. The compressio ratio of voice traffic V. Coclusios The LZW algorithm has several redudacies i applyig it to I-Iageul text ad voice. I order to reduce these redudacies, LZWH algorithm is suggested. However, LZWH algorithm could ot reduce the redudacies related to the voice traffic, because it does ot take ito accout the voice. Thus, i this paper, the ew VDI-LZW algorithm which could reduce the redudacies of Hageul test ad voice data for efficiet voice/data itegrated multiplexer is suggested. The proposed VDI-LZW algorithm uses both the codeword 1442 Authorized licesed use limited to: Korea Advaced Istitute of Sciece ad Techology. Dowloaded o September 11, 29 at 11:52 from IEEE Xplore. Restrictios apply.

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

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

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

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

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

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

Compression Programs. Compression Outline. Multimedia. Lossless vs. Lossy. Encoding/Decoding. Analysis of Algorithms

Compression Programs. Compression Outline. Multimedia. Lossless vs. Lossy. Encoding/Decoding. Analysis of Algorithms Aalysis of Algorithms Compressio Programs File Compressio: Gzip, Bzip Archivers :Arc, Pkzip, Wirar, File Systems: NTFS Piyush Kumar (Lecture 5: Compressio) Welcome to 453 Source: Guy E. Blelloch, Emad,

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

CHAPTER 8 JOINT PAPR REDUCTION AND ICI CANCELLATION IN OFDM SYSTEMS

CHAPTER 8 JOINT PAPR REDUCTION AND ICI CANCELLATION IN OFDM SYSTEMS CHAPTER 8 JOIT PAPR REDUCTIO AD ICI CACELLATIO I OFDM SYSTEMS Itercarrier Iterferece (ICI) is aother major issue i implemetig a OFDM system. As discussed i chapter 3, the OFDM subcarriers are arrowbad

More information

H(X,Y) = H(X) + H(Y X)

H(X,Y) = H(X) + H(Y X) Today s Topics Iformatio Theory Mohamed Hamada oftware gieerig ab The Uiversity of Aizu mail: hamada@u-aizu.ac.jp UR: http://www.u-aizu.ac.jp/~hamada tropy review tropy ad Data Compressio Uiquely decodable

More information

Super J-MOS Low Power Loss Superjunction MOSFETs

Super J-MOS Low Power Loss Superjunction MOSFETs Low Power Loss Superjuctio MOSFETs Takahiro Tamura Mutsumi Sawada Takayuki Shimato ABSTRACT Fuji Electric has developed superjuctio MOSFETs with a optimized surface desig that delivers lower switchig.

More information

x y z HD(x, y) + HD(y, z) HD(x, z)

x y z HD(x, y) + HD(y, z) HD(x, z) Massachusetts Istitute of Techology Departmet of Electrical Egieerig ad Computer Sciece 6.02 Solutios to Chapter 5 Updated: February 16, 2012 Please sed iformatio about errors or omissios to hari; questios

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

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

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

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

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

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

3. Error Correcting Codes

3. Error Correcting Codes 3. Error Correctig Codes Refereces V. Bhargava, Forward Error Correctio Schemes for Digital Commuicatios, IEEE Commuicatios Magazie, Vol 21 No1 11 19, Jauary 1983 Mischa Schwartz, Iformatio Trasmissio

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

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

Throughput/Delay Analysis of Spectrally Phase- Encoded Optical CDMA over WDM Networks

Throughput/Delay Analysis of Spectrally Phase- Encoded Optical CDMA over WDM Networks Throughput/Delay Aalysis of pectrally Phase- Ecoded Optical over etwors K. Putsri *,. ittichivapa * ad H.M.H.halaby ** * Kig Mogut s Istitute of Techology Ladrabag Departmet of Telecommuicatios Egieerig,

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

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

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

Novel pseudo random number generation using variant logic framework

Novel pseudo random number generation using variant logic framework Edith Cowa Uiversity Research Olie Iteratioal Cyber Resiliece coferece Cofereces, Symposia ad Campus Evets 011 Novel pseudo radom umber geeratio usig variat logic framework Jeffrey Zheg Yua Uiversity,

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 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

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

Lecture 13: DUART serial I/O, part I

Lecture 13: DUART serial I/O, part I Lecture 13: DUART serial I/O, part I The bi picture of serial commuicatios Aalo commuicatios Modems Modulatio-demodulatio methods Baud rate Vs. Bits Per Secod Diital serial commuicatios Simplex, half-duplex

More information

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

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

More information

Design of FPGA Based SPWM Single Phase 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

PHY-MAC dialogue with Multi-Packet Reception

PHY-MAC dialogue with Multi-Packet Reception PHY-AC dialogue with ulti-packet Receptio arc Realp 1 ad Aa I. Pérez-Neira 1 CTTC-Cetre Tecològic de Telecomuicacios de Cataluya Edifici Nexus C/Gra Capità, - 0803-Barceloa (Cataluya-Spai) marc.realp@cttc.es

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

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

A GHz Constant KVCO Low Phase Noise LC-VCO and an Optimized Automatic Frequency Calibrator Applied in PLL Frequency Synthesizer

A GHz Constant KVCO Low Phase Noise LC-VCO and an Optimized Automatic Frequency Calibrator Applied in PLL Frequency Synthesizer A 4.6-5.6 GHz Costat KVCO Low Phase Noise LC-VCO ad a Optimized Automatic Frequecy Calibrator Applied i PLL Frequecy Sythesizer Hogguag Zhag, Pa Xue, Zhiliag Hog State Key Laboratory of ASIC & System Fuda

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

Survey of Low Power Techniques for ROMs

Survey of Low Power Techniques for ROMs Survey of Low Power Techiques for ROMs Edwi de Agel Crystal Semicoductor Corporatio P.O Box 17847 Austi, TX 78744 Earl E. Swartzlader, Jr. Departmet of Electrical ad Computer Egieerig Uiversity of Texas

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

ELEC 350 Electronics I Fall 2014

ELEC 350 Electronics I Fall 2014 ELEC 350 Electroics I Fall 04 Fial Exam Geeral Iformatio Rough breakdow of topic coverage: 0-5% JT fudametals ad regios of operatio 0-40% MOSFET fudametals biasig ad small-sigal modelig 0-5% iodes (p-juctio

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

Joint Power Allocation and Beamforming for Cooperative Networks

Joint Power Allocation and Beamforming for Cooperative Networks It. J. Commuicatios, etwork ad System Scieces,, 4, 447-45 doi:.436/ijcs..4753 Published Olie July (http://www.scirp.org/joural/ijcs) Joit Power Allocatio ad Beamformig for Cooperative etworks Sodes Maadi,,

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

Performance Analysis of Channel Switching with Various Bandwidths in Cognitive Radio

Performance Analysis of Channel Switching with Various Bandwidths in Cognitive Radio Performace Aalysis of Chael Switchig with Various Badwidths i Cogitive Radio Po-Hao Chag, Keg-Fu Chag, Yu-Che Che, ad Li-Kai Ye Departmet of Electrical Egieerig, Natioal Dog Hwa Uiversity, 1,Sec.2, Da-Hsueh

More information

Math 140 Introductory Statistics

Math 140 Introductory Statistics 6. Probability Distributio from Data Math Itroductory Statistics Professor Silvia Ferádez Chapter 6 Based o the book Statistics i Actio by A. Watkis, R. Scheaffer, ad G. Cobb. We have three ways of specifyig

More information

Introduction to CPM-OFDM: An Energy Efficient Multiple Access Transmission Scheme

Introduction to CPM-OFDM: An Energy Efficient Multiple Access Transmission Scheme Joural of Commuicatio ad Computer 1 (015) 37-43 doi: 10.1765/1548-7709/015.01.007 D DAVID PUBLISHING Itroductio to CPM-OFDM: A Eergy Efficiet Multiple Access Trasmissio Scheme Mohammad Irfa, Sag Hoo Lee

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

Technical Explanation for Counters

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

More information

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

Selective Periodic Component Carrier Assignment Technique in LTE and LTE-A Systems

Selective Periodic Component Carrier Assignment Technique in LTE and LTE-A Systems Selective Periodic Compoet Carrier Assigmet Techique i LTE ad LTE-A Systems Husu S. Narma ad Mohammed Atiquzzama School of Computer Sciece, Uiversity of Oklahoma, Norma, OK 73019 Email: {husu, atiq}@ou.edu

More information

Decode-forward and Compute-forward Coding Schemes for the Two-Way Relay Channel

Decode-forward and Compute-forward Coding Schemes for the Two-Way Relay Channel Decode-forward ad Compute-forward Codig Schemes for the Two-Way Relay Chael Peg Zhog ad Mai Vu Departmet of Electrical ad Computer Egieerig McGill Uiversity Motreal, QC, Caada H3A A7 Emails: peg.zhog@mail.mcgill.ca,

More information

Cooperative Diversity Based on Code Superposition

Cooperative Diversity Based on Code Superposition 1 Cooperative Diversity Based o Code Superpositio Lei Xiao, Thomas E. Fuja, Jörg Kliewer, Daiel J. Costello, Jr. Departmet of Electrical Egieerig, Uiversity of Notre Dame, Notre Dame, IN 46556, USA Email:

More information

Markov Modulated Punctured Autoregressive Processes for Traffic and Channel Modeling *

Markov Modulated Punctured Autoregressive Processes for Traffic and Channel Modeling * Markov Modulated Puctured Autoregressive Processes for Traffic ad Chael Modelig * Trista Pei-chu Che ad Tsuha Che + Departmet of Electrical ad Computer Egieerig Caregie Mello Uiversity, PA 1513 {peichu,

More information

HDL LIBRARY OF PROCESSING UNITS FOR GENERIC AND DVB-S2 LDPC DECODING

HDL LIBRARY OF PROCESSING UNITS FOR GENERIC AND DVB-S2 LDPC DECODING HDL LIBRARY OF PROCESSING UNITS FOR GENERIC AND DVB-S2 LDPC DECODING Marco Gomes 1,2, Gabriel Falcão 1,2, João Goçalves 1,2, Vitor Silva 1,2, Miguel Falcão 3, Pedro Faia 2 1 Istitute of Telecommuicatios,

More information

Beam Pattern Scanning (BPS) versus Space-Time Block Coding (STBC) and Space-Time Trellis Coding (STTC)

Beam Pattern Scanning (BPS) versus Space-Time Block Coding (STBC) and Space-Time Trellis Coding (STTC) It. J. Commuicatios, Network ad System Scieces, 2009, 6, 469-479 doi:10.4236/ijcs.2009.26051 Published Olie September 2009 (http://www.scirp.org/joural/ijcs/). 469 Beam Patter Scaig (BPS) versus Space-Time

More information

On Parity based Divide and Conquer Recursive Functions

On Parity based Divide and Conquer Recursive Functions O Parity based Divide ad Coquer Recursive Fuctios Sug-Hyu Cha Abstract The parity based divide ad coquer recursio trees are itroduced where the sizes of the tree do ot grow mootoically as grows. These

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

A Reduced Complexity Channel Estimation for OFDM Systems with Precoding and Transmit Diversity in Mobile Wireless Channels Hlaing Minn, Dong In Kim an

A Reduced Complexity Channel Estimation for OFDM Systems with Precoding and Transmit Diversity in Mobile Wireless Channels Hlaing Minn, Dong In Kim an A Reduced Complexity Chael Estimatio for OFDM Systems with Precodig ad Trasmit Diversity i Mobile Wireless Chaels Hlaig Mi, Dog I Kim ad Vijay K. Bhargava Departmet of Electrical ad Computer Egieerig,

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

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

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

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

General Model :Algorithms in the Real World. Applications. Block Codes

General Model :Algorithms in the Real World. Applications. Block Codes Geeral Model 5-853:Algorithms i the Real World Error Correctig Codes I Overview Hammig Codes Liear Codes 5-853 Page message (m) coder codeword (c) oisy chael decoder codeword (c ) message or error Errors

More information

Adaptive Resource Allocation in Multiuser OFDM Systems

Adaptive Resource Allocation in Multiuser OFDM Systems Adaptive Resource Allocatio i Multiuser OFDM Systems Fial Report Multidimesioal Digital Sigal Processig Malik Meherali Saleh The Uiversity of Texas at Austi malikmsaleh@mail.utexas.edu Sprig 005 Abstract

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

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

doi: info:doi/ /ifeec

doi: info:doi/ /ifeec doi: ifo:doi/1.119/ifeec.17.799153 Trasformer Desig Difficulties of Curret Resoat Coverter for High Power Desity ad Wide Iput ltage Rage Toshiyuki Zaitsu Embedded System Research Ceter Omro Corporatio

More information

}, how many different strings of length n 1 exist? }, how many different strings of length n 2 exist that contain at least one a 1

}, how many different strings of length n 1 exist? }, how many different strings of length n 2 exist that contain at least one a 1 1. [5] Give sets A ad B, each of cardiality 1, how may fuctios map A i a oe-tooe fashio oto B? 2. [5] a. Give the set of r symbols { a 1, a 2,..., a r }, how may differet strigs of legth 1 exist? [5]b.

More information

A New Basic Unit for Cascaded Multilevel Inverters with the Capability of Reducing the Number of Switches

A New Basic Unit for Cascaded Multilevel Inverters with the Capability of Reducing the Number of Switches Joural of Power Electroics, ol, o, pp 67-677, July 67 JPE --6 http://dxdoiorg/6/jpe67 I(Prit: 98-9 / I(Olie: 9-78 A ew Basic Uit for Cascaded Multi Iverters with the Capability of Reducig the umber of

More information

International Power, Electronics and Materials Engineering Conference (IPEMEC 2015)

International Power, Electronics and Materials Engineering Conference (IPEMEC 2015) Iteratioal Power, Electroics ad Materials Egieerig Coferece (IPEMEC 205) etwork Mode based o Multi-commuicatio Mechaism Fa Yibi, Liu Zhifeg, Zhag Sheg, Li Yig Departmet of Military Fiace, Military Ecoomy

More information

Optimal Arrangement of Buoys Observable by Means of Radar

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

More information

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

Message Scheduling for the FlexRay Protocol: The Dynamic Segment

Message Scheduling for the FlexRay Protocol: The Dynamic Segment IEEE TRANSACTIONS ON VEHICULAR TECHNOLOGY 1 Message Schedulig for the FlexRay Protocol: The Dyamic Segmet Ece Gura Schmidt, Member, IEEE, Klaus Schmidt Abstract The FlexRay commuicatio protocol is expected

More information

Cross-Layer Performance of a Distributed Real-Time MAC Protocol Supporting Variable Bit Rate Multiclass Services in WPANs

Cross-Layer Performance of a Distributed Real-Time MAC Protocol Supporting Variable Bit Rate Multiclass Services in WPANs Cross-Layer Performace of a Distributed Real-Time MAC Protocol Supportig Variable Bit Rate Multiclass Services i WPANs David Tug Chog Wog, Jo W. Ma, ad ee Chaig Chua 3 Istitute for Ifocomm Research, Heg

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

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

A Bipolar Cockcroft-Walton Voltage Multiplier for Gas Lasers

A Bipolar Cockcroft-Walton Voltage Multiplier for Gas Lasers America Joural of Applied cieces 4 (10): 79-799, 007 N 1546-99 007 ciece Publicatios orrespodig Author: A Bipolar ockcroft-walto Voltage Multiplier for Gas Lasers hahid qbal ad Rosli Besar Faculty of Egieerig

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

Symbol Error Rate Evaluation for OFDM Systems with MPSK Modulation

Symbol Error Rate Evaluation for OFDM Systems with MPSK Modulation Symbol Error Rate Evaluatio for OFDM Systems with MPS Modulatio Yuhog Wag ad Xiao-Pig Zhag Departmet of Electrical ad Computer Egieerig, Ryerso Uiversity 35 Victoria Street, Toroto, Otario, Caada, M5B

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

TMCM BLDC MODULE. Reference and Programming Manual

TMCM BLDC MODULE. Reference and Programming Manual TMCM BLDC MODULE Referece ad Programmig Maual (modules: TMCM-160, TMCM-163) Versio 1.09 August 10 th, 2007 Triamic Motio Cotrol GmbH & Co. KG Sterstraße 67 D 20357 Hamburg, Germay http:www.triamic.com

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

A Novel Three Value Logic for Computing Purposes

A Novel Three Value Logic for Computing Purposes Iteratioal Joural o Iormatio ad Electroics Egieerig, Vol. 3, No. 4, July 23 A Novel Three Value Logic or Computig Purposes Ali Soltai ad Saeed Mohammadi Abstract The aim o this article is to suggest a

More information

ASample of an XML stream is:

ASample of an XML stream is: 1 Efficiet Multichael i XML Wireless Broadcast Stream Arezoo Khatibi* 1 ad Omid Khatibi 2 1 Faculty of Computer Sciece, Uiversity of Kasha, Kasha, Ira 2 Faculty of Mathematics, Uiversity of Viea,Viea,

More information

Novel Steganography System using Lucas Sequence

Novel Steganography System using Lucas Sequence Novel Stegaography System usig ucas Sequece Fahd Alharbi Faculty of Egieerig Kig Abdulaziz Uiversity Rabigh, KSA Abstract Stegaography is the process of embeddig data ito a media form such as image, voice,

More information

The Potential of Dynamic Power and Sub-carrier Assignments in Multi-User OFDM-FDMA Cells

The Potential of Dynamic Power and Sub-carrier Assignments in Multi-User OFDM-FDMA Cells The Potetial of Dyamic Power ad Sub-carrier Assigmets i Multi-User OFDM-FDMA Cells Mathias Bohge, James Gross, Adam Wolisz Telecommuicatio Networks Group, TU Berli Eisteiufer 5, 1587 Berli, Germay {bohge

More information

Broadcasting in Multichannel Cognitive Radio Ad Hoc Networks

Broadcasting in Multichannel Cognitive Radio Ad Hoc Networks 2013 IEEE Wireless Commuicatios ad Networkig Coferece (WCNC): MAC Broadcastig i Multichael Cogitive Radio Ad Hoc Networks Zaw Htike Departmet of Computer Egieerig Kyug Hee Uiversity 1 Seocheo,Giheug, Yogi,

More information

Multisensor transducer based on a parallel fiber optic digital-to-analog converter

Multisensor transducer based on a parallel fiber optic digital-to-analog converter V Iteratioal Forum for Youg cietists "pace Egieerig" Multisesor trasducer based o a parallel fiber optic digital-to-aalog coverter Vladimir Grechishikov 1, Olga Teryaeva 1,*, ad Vyacheslav Aiev 1 1 amara

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

SERVICE MODEL OF THE VOICE TRAFFIC IN MULTIPROTOCOL LABEL SWITCHING NETWORKS

SERVICE MODEL OF THE VOICE TRAFFIC IN MULTIPROTOCOL LABEL SWITCHING NETWORKS 33 UDC 621.39 SERICE MODEL OF THE OICE TRAFFIC IN MULTIPROTOCOL LABEL SWITCHING NETWORKS olodymyr B. Makovskiy, Oleksadr I. Romaov Natioal Techical Uiversity of Ukraie KPI, Kyiv, Ukraie This paper proposes

More information

IEEE TRANSACTIONS ON COMMUNICATIONS 1

IEEE TRANSACTIONS ON COMMUNICATIONS 1 IEEE TRANSACTIONS ON COMMUNICATIONS 3 5 6 7 8 9 0 3 5 6 7 8 9 0 3 5 6 7 Adaptive Buffer-Aided Distributed Space-Time Codig for Cooperative Wireless Networks Tog Peg ad Rodrigo C. de Lamare, Seior Member,

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

Interference Management in LTE Femtocell Systems Using an Adaptive Frequency Reuse Scheme

Interference Management in LTE Femtocell Systems Using an Adaptive Frequency Reuse Scheme Iterferece Maagemet i LTE Femtocell Systems Usig a Adaptive Frequecy Reuse Scheme Christos Bouras 1,2, Georgios Kavourgias 2, Vasileios Kokkios 1,2, Adreas Papazois 1,2 1 Computer Techology Istitute &

More information

Cooperative Node Localization for Mobile Sensor Networks

Cooperative Node Localization for Mobile Sensor Networks 8 IEEE/IFIP Iteratioal Coferece o Embedded ad Ubiquitous Computig Cooperative Node Localizatio for Mobile Sesor Networks Hogyag Che Uiversity of Tokyo, Japa hogyag@mcl.iis.u-tokyo.ac.jp Pei Huag Michiga

More information

Efficient Feedback-Based Scheduling Policies for Chunked Network Codes over Networks with Loss and Delay

Efficient Feedback-Based Scheduling Policies for Chunked Network Codes over Networks with Loss and Delay Efficiet Feedback-Based Schedulig Policies for Chuked Network Codes over Networks with Loss ad Delay Aoosheh Heidarzadeh ad Amir H. Baihashemi Departmet of Systems ad Computer Egieerig, Carleto Uiversity,

More information

Hybrid BIST Optimization for Core-based Systems with Test Pattern Broadcasting

Hybrid BIST Optimization for Core-based Systems with Test Pattern Broadcasting Hybrid BIST Optimizatio for Core-based Systems with Test Patter Broadcastig Raimud Ubar, Masim Jeihhi Departmet of Computer Egieerig Talli Techical Uiversity, Estoia {raiub, masim}@pld.ttu.ee Gert Jerva,

More information

The Potential of Dynamic Power and Sub-carrier Assignments in Multi-User OFDM-FDMA Cells

The Potential of Dynamic Power and Sub-carrier Assignments in Multi-User OFDM-FDMA Cells The Potetial of Dyamic Power ad Sub-carrier Assigmets i Multi-User OFDM-FDMA Cells Mathias Bohge, James Gross, Adam Wolisz TU Berli Eisteiufer 5, 1587 Berli, Germay {bohge gross wolisz}@tk.tu-berli.de

More information

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

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

More information

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

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

More information

Cross-Entropy-Based Sign-Selection Algorithms for Peak-to-Average Power Ratio Reduction of OFDM Systems

Cross-Entropy-Based Sign-Selection Algorithms for Peak-to-Average Power Ratio Reduction of OFDM Systems 4990 IEEE TRASACTIOS O SIGAL PROCESSIG, VOL. 56, O. 10, OCTOBER 2008 Cross-Etropy-Based Sig-Selectio Algorithms for Peak-to-Average Power Ratio Reductio of OFDM Systems Luqig Wag ad Chitha Tellambura Abstract

More information