Predicted Movie Rankings: Mixture of Multinomials with Features CS229 Project Final Report 12/14/2006

Size: px
Start display at page:

Download "Predicted Movie Rankings: Mixture of Multinomials with Features CS229 Project Final Report 12/14/2006"

Transcription

1 Predicted ovie Rnkings: ixtre of ltinomils with Fetres CS229 Project Finl Report 2/4/2006 Introdction H Ji Chew Dimitris Economo Rlene Yng hji@stnford.ed dimeco@stnford.ed rlene@stnford.ed The Netflix Prie is n on-going contest orgnied b the online DD rentl compn, Netflix. Contestnts tr to design nd implement lgorithms tht cn best predict ser's movie rnkings bsed on their movie preferences. We strted or project b joining the Stnford Netflix Prie Tem nd tking the probbilistic model pproch. Or first implementtion sed the mixtre of mltinomils model [] s bseline pproch nd obtined promising reslts. We then modified the lgorithm to mke se of dditionl fetres in the form of clsters, creting method tht we will hereb refer to s ixtre of ltinomils with Fetres. We evlted the mixtre of mltinomils with fetres pproch b experimenting with clstering techniqes nd vring model prmeters. Clsters were generted sing dt extrcted from the IDB dtbse, sch s movie genre, cst, etc. To del with both the complexit of the lgorithms nd the enormit of the dtset, we prllelied or implementtions sing the essge-pssing Interfce (PI). 2 ixtre of ltinomils 2. Theor Consider problem with N sers nd items, where ech ser cn give ech item rting r. In simple mltinomil model for this problem, rtings for individl items re ssmed to be independent of one nother, nd no distinction is mde between sers. For ser nd rting profile r, R = r ) = R = r ). In mixtre of mltinomils model however, we now sppose tht sers fll into one of K ltent clsses, nd item rtings re insted conditionll independent given ser s clss. The prior probbilit tht ser belongs to clss is given b Z = ) = θ The probbilit tht ser gives rting v to item is now denoted b prmeter, P ( R = v Z = ) =,, We then constrct the joint probbilit of ser hving rting profile r nd clss s R = r, Z = ) = Z = ) = R = v Z = ) Finll, we cn then se or prmeters s defined bove to predict n individl item rting: 2.2 Implementtion r θ = =, r,, r,2,, r, ) = K K θ = =,,,, = L () We sed the Netflix Prie Dtbse s the sorce for both or trining nd testing dt, nd implemented the E lgorithm to lern or model prmeters. With 2,649,429 sers nd 7,770 movies in the entire dtset, complexit becme n importnt concern. If we let N represent the nmber of ser profiles, the nmber of movies, the nmber of rtings, nd K the nmber of ltent clsses, the complexit of single itertion of E ws O(N K), or on the order of 0 0. The verge nmber of movies rted b ech ser ws mesred to be =206, significntl less thn the totl nmber of movies. Ths to redce the complexit b fctor of /, insted of iterting over ll movies for ever ser, t ech step we iterte onl over the movies rted b the ser.

2 3 ixtre of ltinomils with Fetres 3. otivtion The mixtre of mltinomils pproch derives the probbilit of ser s rnking sing nothing more thn the set of known ser rnkings. Intitivel, dding more informtion to the rnking prediction lgorithm wold ield improved reslts, expecting tht ser preferences re inflenced b movie properties, sch s genre, cst, film relese dte, film bdget, formt, etc. The onl informtion provided for ech of the movies in the given Netflix dtset is the er of relese nd the title. Using this informtion to index into IDB, we cn extrct dditionl movie properties. Once provided with sch dt, we modified the prediction phse of the mixtre of mltinomils lgorithm to mke se of dditionl fetres in the form of movie clsters. The reslting lgorithm is frther discssed in the next section. 3.2 Algorithm Dring the mixtre of mltinomils prediction step, the probbilit tht specific ser is prt of ltent clss is clclted sing the prmeters derived in the lerning lgorithm. In the mixtre of mltinomils with fetres lgorithm, for ech ser nd ech movie tht hs not been rnked b the ser, we clclte the probbilit tht the ser is prt of ltent clss, denoted φ where is the movie ID nd is the ltent clss nmber. This φ is clclted sing ll P ( R' = v Z = ) =, ', where is in the sme clster s nd introdcing scling fctor α [0,] for ll, '', where is not in the sme clster. Setting α = weights the,, of relted nd nrelted movies eqll mking it eqivlent to sing the mixtre of mltinomils lgorithm. The psedo-code for the prediction step of the lgorithm is shown below where the fnction if nd γ( r ',, ', = v onl if the movie is prt of the sme clster s nd the ser s rnking of movie,, is eql to. The fnction γ is eql to ero otherwise. r ' PSEUDO CODE: INPUT: r,θ, OUTPUT: rˆ FOR =:K DO FOR =: DO θ φ K θ ' = ' ' = v= γ ( r ',, α[ γ ( r ',, ', ] v' v' = γ ( r ',, α[ γ ( r ',, ', ] ' = v= v' ' v' ' FOR =: DO FOR v=: DO K pv = = rˆ = = v p v v v φ COENTS: For ech ser predict rnking for ech nrnked movie. Clclte probbilit tht ser is in ltent clss for nrnked movie bsed on derived prmeters for relted movies nd scled down prmeters for non-relted movies (b fctor α [0,]). Use clssifiction probbilities nd derived prmeters for nrnked movie to predict probbilities of rnking. Clclte predicted rnking. 3.3 Implementtion As mentioned in [], one itertion of the originl mixtre of mltinomils E lerning lgorithm reqires

3 rnning time of O(N K) while the prediction step tkes O( K) time. This lgorithm predicts ser s movie rtings bsed on ll the movies the ser hs rted. Ths, in eqtion (), we onl need to compte the prmeters once for ech ser profile nd ppl them to ech of the ser s test cses. With the modifictions to the prediction step, however, we hve dded nother dimension to the complexit of the lgorithm. We now predict ser s movie rtings bsed on mixtre of relted nd nrelted movies rted b the ser. Conseqentl, we need to compte different set of prmeters for ech of the test movies in the ser profile. This increses the complexit of the predicting step to O( K). This increse in compttionl time complexit mde rnning the modified lgorithm on single processor intrctble. To overcome this, we prllelied the compttion nd distribted the worklod cross mltiple mchines sing the essge-pssing Interfce (PI). Since the prmeters (φ s) re ser-specific, it seems ntrl to split the compttion long the N dimension. In or distribted compting environment, we hve mster node nd n child nodes. The mster node is responsible for initiliing the child nodes, distribting initil prmeters nd ggregting reslts from ll the child nodes. Figre shows grphicl representtion of or modified lgorithm rnning cross mltiple mchines. Send θ s & s Send new φ s Send new θ s & s Send Child Child ster Child 2 ster Child 2 ster Lerning Step Child n Child n Prediction Step Updte φ s Compte new θ s & s Predict & compte Aggregte & compte finl Figre : Distribting compttion cross mltiple mchines. Refer to [] for detils on the lerning step. To frther redce the compttionl time reqired, we note tht ser profile contins mn movies of the sme clster. Therefore, the clim tht we need to compte distinct set of prmeters for ech of the test movies in the ser profile is not entirel tre. On the contrr, for ser profile, we cn cche set of prmeters for ech distinct clster. Whenever we enconter movie from cched clster, we do not need to repet the compttion of s shown in Section 3.2. φ 3.4 ethodolog The modified lgorithm dded few degrees of freedom, sch s the vle of α nd sing different clstering techniqes, whose effects nd properties were not immeditel cler to s. The strightforwrd w to find the optiml combintion ws to rn the lgorithm with different configrtions nd pick the one with the best reslt. However, this is not prcticl de to the lrge time nd spce complexit. To llevite this, we rn the lgorithm with different configrtions on smller dt set nd then pplied the best configrtion to the fll dtset. We first experimented with different ws of clstering the movies. In prticlr, we sed movie genres to seprte the movies into overlpping nd non-overlpping clsters. Overll there re 28 bsic genres, rnging from horror to romnce. Note tht since movie cn belong to more thn one of the bsic genres, with overlpping clsters, two movies re relted if t lest one of their genres is the sme. With non-overlpping clsters, we first preprocessed the movie-genre informtion to form distinct combintions of genres. We fond on the order of 600 distinct genre combintions, with 8900 movies belonging to single genre. In this scheme, two movies re in the sme clster if nd onl if their genre combintions re exctl the sme. We evlted the performnce of or lgorithm sing the root men sqred error (). This is the stndrd performnce metric mesred b The Netflix Prie[2]. is clclted sing the following eqtion: N ( rˆ r ) N = 2

4 To minimie the, we compted the prediction of ser for movie b tking the expected vle over ll possible rtings from to 5 s follows[]: rˆ = v= v R In order to find the optiml α for relted nd nrelted movies, we rn the lgorithm with these two clstering schemes on 00 times smller trining set with the nmber of ltent clsses, K, set to 5 for 0 itertions. We then evlted the performnce of ech setting b compring the root men sqred error () obtined fter testing ginst the corresponding 00 times smller test set. The derived optiml clsters nd prmeter vles were then pplied to the fll dtset. 4 Reslts 4. ixtre of ltinomils = vs. Itertions vs. Nmber of Ltent Clsses.06 k= k= k=5 k= k=25 k=30 k= k=40 k= k= Itertions Ltent Clsses (k) Figre 2: vs. Itertions for different nmbers of ltent clsses (left), vs. Nmber of Ltent Clsses (right). The mixtre of mltinomils lgorithm converges fter 8 itertions in ever rn. Incresing the nmber of ltent clsses improves the performnce of the lgorithm, thogh fter K=30 the increse in performnce is negligible while the increse in complexit is still significnt. The best performnce mesred ws with K=50, ttining n of bot ixtre of ltinomils with Fetres vs. lph (non-overlpping movie genre clsters) Alph vs. lph (overlpping movie genre clsters) Figre 3: vs. Alph for movies clstered b non-overlpping genres (left), vs. Alph for movies clstered b overlpping genres (right). Reslts shown for itertion 0 of lgorithm where K=5 nd sing 00x-smller trining nd testing sets. Alph

5 The optiml combintion of clsters nd vles of α ws α=0 with overlpping clsters. This combintion chieved the lowest, thogh α=0.5 with non-overlpping clsters performed lmost s well. Appling the lgorithm with α=0 nd overlpping clsters on the fll Netflix dtset with K=50 (on 30 nodes sing PI) chieved n of ethod AvgUserRting AvgovieRting AvgUserRting/(vg(AvgUserRting)) ixlti ixltifetres * AvgovieRting Tble : Bseline reslts [3] nd reslts sing ixtre of ltinomils Algorithms 5 Discssion We expected the overlpping clsters to perform worse thn the non-overlpping clsters becse the former cn relte two movies s different s romnce-comed nd romnce-dlt film. However, sing overlpping clsters improves the performnce which m be de to the vilbilit of more informtion. For exmple, there re mn genre combintions exclded in the non-overlpping clster cse tht wold expectedl improve the reslts, sch s sci-fi-ction, sci-fi-horror, nd sci-fi-dventre. To compenste for the lck of informtion when sing the non-overlpping clsters, the optiml α is greter thn 0 weighing in the inflence of ll the ser s movie predictions (inclding nrelted movies). 6 Frther Work Crrentl, not ll of the Netflix movie IDs re mpped to IDB movie IDs. Ths ll clsters sed in the experiments were generted sing onl 75% of the movies. Completing this mpping will ndobtedl improve the reslts of the mixtre of mltinomils with fetres pproch. Additionll, sing different IDB movie properties or combintions of them with more sophisticted clstering techniqes m generte clsters tht better cptre ser preferences. The mixtre of mltinomils with fetres pproch onl improves the prediction phse of the mixtre of mltinomils lgorithm. odifing the lerning phse to incorporte clster informtion s well wold be n interesting vrition to or pproch. Another slight vrition to or lgorithm tht we think wold be interesting to test is sing threshold vle, t, to filter ot predictions derived from set of relted movies smller thn t. B setting t=20, for exmple, the lgorithm wold revert to the mixtre of mltinomils prediction pproch when the nmber of relted movies is less thn 20. In this w, the lgorithm wold prevent predictions bsed on ver little informtion which cold be more likel to be incorrect thn the originl pproch. Of corse, testing wold determine the optiml t. 7 Conclsion We modified the prediction step of the mixtre of mltinomils lgorithm to mke se of dditionl fetres, in the form of clsters. We pplied the reslting mixtre of mltinomils with fetres lgorithm to the Netflix dtset sing clsters derived from movie genres nd chieved n improvement in performnce over the originl lgorithm. The mixtre of mltinomils with fetres lgorithm cn be pplied to n set of sers rnking specific set of items tht cn be groped bsed on their properties. 8 Acknowledgments We wold like to thnk Tom Do for implementing the high-precision mth librr, nd providing helpfl dvice s well s sstems spport. Thnks to Tom Do nd Thc for orgniing nd mintining the Stnford Netflix Prie Tem. Finll, we wold like to thnk the other Stnford Netflix Prie Tem members for their help with dt crtion. 9 References [] rlin, Benjmin. Collbortive Filtering: A chine Lerning Perspective [2] The Netflix Prie, [3] Stnford Netflix Prie Wiki,

ECE 274 Digital Logic. Digital Design. Datapath Components Registers. Datapath Components Register with Parallel Load

ECE 274 Digital Logic. Digital Design. Datapath Components Registers. Datapath Components Register with Parallel Load ECE 274 igitl Logic Multifunction Registers igitl esign 4. 4.2 igitl esign Chpter 4: Slides to ccompny the textbook igitl esign, First Edition, by Frnk Vhid, John Wiley nd Sons Publishers, 27. http://www.ddvhid.com

More information

The Official IDENTITY SYSTEM. A Manual Concerning Graphic Standards and Proper Implementation. As developed and established by the

The Official IDENTITY SYSTEM. A Manual Concerning Graphic Standards and Proper Implementation. As developed and established by the The Officil ISKCON IDENTITY SYSTEM A Mnul Concerning Grphic Stndrds nd Proper Implementtion As developed nd estlished y the COMMUNICATIONS DEPARTMENT of the INTERNATIONAL SOCIETY FOR KRISHNA CONSCIOUSNESS

More information

Reverse Iterative Deepening for Finite-Horizon MDPs with Large Branching Factors

Reverse Iterative Deepening for Finite-Horizon MDPs with Large Branching Factors Reverse Itertive Deepening for Finite-Horizon MDPs with Lrge Brnching Fctors Andrey Kolobov Peng Di Musm Dniel S. Weld {kolobov, dipeng, musm, weld}@cs.wshington.edu Dept. of Computer Science nd Engineering

More information

WE SERIES DIRECTIONAL CONTROL VALVES

WE SERIES DIRECTIONAL CONTROL VALVES WE SERIES DIRECTIONL CONTROL VLVES ISO4401 Size 03 ulletin 80340- DESIGNTION PGE Fetures nd Generl Description 3 Specifictions 4 Operting Limits 5 Tle of Contents Performnce Dt 6 Stndrd Models 7-8 Dimensions

More information

Mapping Arbitrary Logic Functions into Synchronous Embedded Memories For Area Reduction on FPGAs

Mapping Arbitrary Logic Functions into Synchronous Embedded Memories For Area Reduction on FPGAs Mpping Aritrry Logic Functions into Synchronous Emedded Memories For Are Reduction on FPGAs Gordon R. Chiu, Deshnnd P. Singh, Vlvn Mnohrrjh, nd Stephen D. Brown Toronto Technology Center, Alter Corportion

More information

VISUAL IDENTITY GUIDE

VISUAL IDENTITY GUIDE VISUAL IDENTITY GUIDE contents Bsic Section Visul Identity System Bsic Prt Appliction Section Visul Identity System Appliction Prt 1.1 Logo System Design 1.1.1 Stndrd Color Grphics of The Logo 1.1.2 Stndrd

More information

CPE 200L LABORATORY 2: DIGITAL LOGIC CIRCUITS BREADBOARD IMPLEMENTATION UNIVERSITY OF NEVADA, LAS VEGAS GOALS:

CPE 200L LABORATORY 2: DIGITAL LOGIC CIRCUITS BREADBOARD IMPLEMENTATION UNIVERSITY OF NEVADA, LAS VEGAS GOALS: CPE 200L LABORATORY 2: DIGITAL LOGIC CIRCUITS BREADBOARD IMPLEMENTATION DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING UNIVERSITY OF NEVADA, LAS VEGAS GOALS: In this l, the sic logic circuits will e

More information

Corporate Logo Guidelines

Corporate Logo Guidelines Corporte Logo Guidelines The llpy logo Inspirtion The logo is inspired by llpy s commitment to the world of secure nd complete pyment services. The solid circle surrounding the nme represents bullet proof

More information

DIGITAL EFFECTS MODULE OWNER'S MANUAL

DIGITAL EFFECTS MODULE OWNER'S MANUAL DIGITL EFFECTS MODULE OWNER'S MNUL Introduction Thnk you for purchsing the DEP (bbrev For: Digitl Effects Processor) To tke full dvntge of the DEP's functions, nd to enjoy long nd trouble-free use, plese

More information

Answers to Exercise 3.3 (p. 76)

Answers to Exercise 3.3 (p. 76) Answers to Exercise 3.3 (p. 76) First of ll, check to see tht you hve weighted your dtset with the vrible WTCORRCT (see Figure 2.5 on p. 52 for how to do this). Once this hs been done, you then need to

More information

Safety Relay Unit G9SB

Safety Relay Unit G9SB Sfety Rely Unit CSM DS_E_6_1 Ultr Slim Sfety Rely Unit Models of width 17.5 mm vilble with 2 or 3 poles. Models of width 22.5 mm with 3 poles lso vilble. Conforms to EN stndrds. (TÜV pprovl) DIN trck mounting

More information

GRABLINKTM. FullTM. - DualBaseTM. - BaseTM. GRABLINK Full TM. GRABLINK DualBase TM. GRABLINK Base TM

GRABLINKTM. FullTM. - DualBaseTM. - BaseTM. GRABLINK Full TM. GRABLINK DualBase TM. GRABLINK Base TM GRLINKTM FullTM - DulseTM - setm Full-Fetured se, Medium nd Full Cmer Link Frme Grbbers GRLINK Full TM GRLINK Dulse TM GRLINK se TM www.euresys.com info@euresys.com Copyright 011 Euresys s.. elgium. Euresys

More information

SeSSION 9. This session is adapted from the work of Dr.Gary O Reilly, UCD. Session 9 Thinking Straight Page 1

SeSSION 9. This session is adapted from the work of Dr.Gary O Reilly, UCD. Session 9 Thinking Straight Page 1 G N I K N I THmily TrHeeT FSTRAIG SeSSION 9 This session is dpted from the work of Dr.Gry O Reilly, UCD Session 9 Thinking Stright Pge 1 Lerning Objectives ful thinking tht To look t how we cn spot unhelp

More information

Pitch I. I. Lesson 1 : Staff

Pitch I. I. Lesson 1 : Staff Pitch Lesson 1 : Stff n this lesson you will lern bout the five-line stff, pitches nd notes, noteheds, scending nd descending motion, steps nd leps, ledger lines. Music is written on five-line stff: five

More information

Generating lyrics with the variational autoencoder and multi-modal artist embeddings

Generating lyrics with the variational autoencoder and multi-modal artist embeddings Generting lyrics with the vritionl utoencoder nd multi-modl rtist embeddings Olg Vechtomov, Hreesh Bhuleyn, Amirpsh Ghbussi, Vineet John University of Wterloo, ON, Cnd {ovechtom,hpllik,ghbuss,vineet.john}@uwterloo.c

More information

CPSC 121: Models of Computation Lab #2: Building Circuits

CPSC 121: Models of Computation Lab #2: Building Circuits CSC 121: Models of Computti L #2: Building Circuits Ojectives In this l, ou will get more eperience with phsicl logic circuits using The Mgic Bo. You will lso get our first eposure to Logisim, tool for

More information

Application Support. Product Information. Omron STI. Support Engineers are available at our USA headquarters from

Application Support. Product Information. Omron STI. Support Engineers are available at our USA headquarters from Omron STI Appliction Support Thnk you for your interest in Omron STI products. Plese contct Omron STI with your ppliction questions. Support Engineers re vilble t our U hedqurters from 4:00.m. until 5:00

More information

DRAFT. Vocal Music AOS 2 WB 3. Purcell: Music for a While. Section A: Musical contexts. How is this mood achieved through the following?

DRAFT. Vocal Music AOS 2 WB 3. Purcell: Music for a While. Section A: Musical contexts. How is this mood achieved through the following? Purcell: Music for While Section A: Musicl contexts Like the Bch Brndenurg Concerto No. 5 in Workook 1, this song y Henry Purcell ws composed during the Broque er. To understnd the music it is helpful

More information

Standard Databases for Recognition of Handwritten Digits, Numerical Strings, Legal Amounts, Letters and Dates in Farsi Language

Standard Databases for Recognition of Handwritten Digits, Numerical Strings, Legal Amounts, Letters and Dates in Farsi Language Stndrd Dtbses for Recognition of Hndwritten, Numericl Strings, Legl Amounts, Letters nd Dtes in Frsi Lnguge Frshid Solimnpour, Jvd Sdri, Ching Y. Suen To cite this version: Frshid Solimnpour, Jvd Sdri,

More information

Soft Error Derating Computation in Sequential Circuits

Soft Error Derating Computation in Sequential Circuits Soft Error Derting Computtion in Sequentil Circuits Hossein Asdi Northestern University, ECE Dept. Boston, MA 02115 gsdi@ece.neu.edu Mehdi B. Thoori Northestern University, ECE Dept. Boston, MA 02115 mthoori@ece.neu.edu

More information

LAERSKOOL RANDHART ENGLISH GRADE 5 DEMARCATION FOR EXAM PAPER 2

LAERSKOOL RANDHART ENGLISH GRADE 5 DEMARCATION FOR EXAM PAPER 2 LAERSKOOL RANDHART ENGLISH GRADE 5 DEMARCATION FOR EXAM PAPER 2 Dte: 15 Octoer 2018 Time: 2 hours Totl: 25 mrks SECTION C: ESSAY (15 MARKS) Write n essy out one of the given topics. Your essy should e

More information

Your Summer Holiday Resource Pack: English

Your Summer Holiday Resource Pack: English Messge Activity to Prents: Sheet The summer holidys re here! To help keep your child entertined, we ve put together Summer Holidy Resource Pck. It s een produced to reduce summer holidy lerning loss nd

More information

Explosion protected add-on thermostat

Explosion protected add-on thermostat Dt Sheet 605051 Pge 1/7 Explosion protected dd-on thermostt ATH-EXx type series Prticulrities 10 A contct rting cn be directly fitted in zone 1, 2, 21 nd 22 optionl -50 C used Control rnges from -20 to

More information

Safety Relay Unit G9SB

Safety Relay Unit G9SB Sfety Rely Unit CSM DS_E_4_1 Ultr Slim Sfety Rely Unit Models of width 17.5 mm vilble with 2 or 3 poles. Models of width 22.5 mm with 3 poles lso vilble. Conforms to EN stndrds. (TÜV pprovl) DIN trck mounting

More information

arxiv: v2 [cs.sd] 13 Dec 2016

arxiv: v2 [cs.sd] 13 Dec 2016 Towrds computer-ssisted understnding of dynmics in symphonic music rxiv:1612.02198v2 [cs.sd] 13 Dec 2016 Mrten Grchten 1, Crlos Edurdo Cncino-Chcón 2, Thssilo Gdermier 2 nd Gerhrd Widmer 1,2 1 Deprtment

More information

Have they bunched yet? An exploratory study of the impacts of bus bunching on dwell and running times.

Have they bunched yet? An exploratory study of the impacts of bus bunching on dwell and running times. 1 1 1 1 1 1 1 1 0 1 0 1 0 1 Hve they bunched yet? An explortory study of the impcts of bus bunching on dwell nd running times Dvid Verbich School of Urbn Plnning Fculty of Engineering McGill University

More information

Chapter 4 (Part I) The Processor. Baback Izadi Division of Engineering Programs

Chapter 4 (Part I) The Processor. Baback Izadi Division of Engineering Programs EGC442 Introdction to Compter Architectre Chapter 4 (Part I) The Processor Baback Izadi Division of Engineering Programs bai@engr.newpaltz.ed Introdction CPU performance factors Instrction cont Determined

More information

A Parallel Multilevel-Huffman Decompression Scheme for IP Cores with Multiple Scan Chains

A Parallel Multilevel-Huffman Decompression Scheme for IP Cores with Multiple Scan Chains A Parallel Mltilevel-Hffman Decompression Scheme for IP Cores with Mltiple Scan Chains X Kavosianos, E Kalligeros 2 and D Nikolos 2 Compter Science Dept, University of Ioannina, 45 Ioannina, Greece 2 Compter

More information

Reproducible music for 3, 4 or 5 octaves handbells or handchimes. by Tammy Waldrop. Contents. Performance Suggestions... 3

Reproducible music for 3, 4 or 5 octaves handbells or handchimes. by Tammy Waldrop. Contents. Performance Suggestions... 3 eproducible Spring ing! eproducible music for, or octves hndbells or hndchimes by Tmmy Wldrop Contents Performnce Suggestions... The Gtheing... Esily memorized, surround sound, to strt off ny event. L+

More information

THE SOLAR NEIGHBORHOOD. XV. DISCOVERY OF NEW HIGH PROPER MOTION STARS WITH 0B4 yr 1 BETWEEN DECLINATIONS 47 AND 00

THE SOLAR NEIGHBORHOOD. XV. DISCOVERY OF NEW HIGH PROPER MOTION STARS WITH 0B4 yr 1 BETWEEN DECLINATIONS 47 AND 00 The Astronomicl Journl, 130:1658 1679, 2005 October # 2005. The Americn Astronomicl Society. All rights reserved. Printed in U.S.A. A THE SOLAR NEIGHBORHOOD. XV. DISCOVERY OF NEW HIGH PROPER MOTION STARS

More information

ECE 274 Digital Logic. Digital Design. Sequential Logic Design Controller Design: Laser Timer Example

ECE 274 Digital Logic. Digital Design. Sequential Logic Design Controller Design: Laser Timer Example ECE 274 Digitl Logic Sequentil Logic Design Sequentil Logic Design Process Digitl Design 3.4 3.5 Digitl Design Chpter 3: Sequentil Logic Design -- Controllers Slides to ccompny the tetook Digitl Design,

More information

Chapter 5. Synchronous Sequential Logic. Outlines

Chapter 5. Synchronous Sequential Logic. Outlines Chpter 5 Synchronous Sequentil Logic Outlines Sequentil Circuits Ltches Flip-Flops Anlysis of Clocke Sequentil Circuits Stte Reuction n Assignment Design Proceure 2 5. Sequentil Circuits Sequentil circuits

More information

Animals. Adventures in Reading: Family Literacy Bags from Reading Rockets

Animals. Adventures in Reading: Family Literacy Bags from Reading Rockets Animls Adventures in Reding: Fmily Litercy Bgs from Reding Rockets Contents: Two books one fiction, one nonfiction Prent informtion sheet Three ctivity sheets Bookmrk Prent survey ADVENTURES IN READING

More information

LOGICAL FOUNDATION OF MUSIC

LOGICAL FOUNDATION OF MUSIC LOGICAL FOUNDATION OF MUSIC philosophicl pproch Im Anfng wr die Tt Goethe, Fust CARMINE EMANUELE CELLA cecily@liero.it www.cryptosound.org NATURE OF MUSICAL KNOWLEDGE Musicl knowledge cn e thought s complex

More information

Before Reading. Introduce Everyday Words. Use the following steps to introduce students to Nature Walk.

Before Reading. Introduce Everyday Words. Use the following steps to introduce students to Nature Walk. Nture Wlk Objectives 15 Before Reding Demonstrte understnding of the orgniztion nd bsic fetures of print Recognize nd red grde-pproprite irregulrly spelled words Red on-level text orlly with ccurcy pproprite

More information

Introduction. APPLICATION NOTE 712 DS80C400 Ethernet Drivers. Jun 06, 2003

Introduction. APPLICATION NOTE 712 DS80C400 Ethernet Drivers. Jun 06, 2003 Mxim > Design Support > Technicl Documents > Appliction Notes > Microcontrollers > APP 712 Keywords: DS80C400, ethernet drivers, ethernet controller, TCP/IP router, source code, MII, MAC, PHY, ethernet

More information

ARCHITECTURAL CONSIDERATION OF TOPS-DSP FOR VIDEO PROCESSING. Takao Nishitani. Tokyo Metropolitan University

ARCHITECTURAL CONSIDERATION OF TOPS-DSP FOR VIDEO PROCESSING. Takao Nishitani. Tokyo Metropolitan University ARCHITECTURAL CONSIDERATION OF TOPS-DSP FOR VIDEO PROCESSING Tko Nishitni Tokyo Metropolitn University nishitni@eei.metro-u.c.jp ABSTRACT Possible DSP chip rchitecture with Ter-Opertions-Per - Second processing

More information

VOCAL MUSIC I * * K-5. Red Oak Community School District Vocal Music Education. Vocal Music Program Standards and Benchmarks

VOCAL MUSIC I * * K-5. Red Oak Community School District Vocal Music Education. Vocal Music Program Standards and Benchmarks INTEGRATIONS: CE=Creer Eduction; CM=Communiction Skills; GE=Glol Eduction; HOTS=Higher Order Thinking Skills; LS=Lerning & Studying; MCGF=Multiculturl/Gender Fir; T=Technology Vocl Music Progrm Stndrds

More information

Interactions of Folk Melody and Transformational (Dis)continuities in Chen Yi s Ba Ban

Interactions of Folk Melody and Transformational (Dis)continuities in Chen Yi s Ba Ban Interctions of Folk Melody nd Trnsformtionl (Dis)continuities in Chen Yi s B Bn John Roeder University of British Columi Chinese twelvetone composers ] vried esthetic principles re t the core of their

More information

Train times. Monday to Sunday. Stoke-on-Trent. Crewe

Train times. Monday to Sunday. Stoke-on-Trent. Crewe Trin times Mony to Suny Services between: Derby Crewe Stoke-on-Trent 5 Vli from 22n July to 7th October 2018 This timetble replces the Est Milns Trins Trin times 5 timetble between the bove tes on this

More information

Speech Recognition Combining MFCCs and Image Features

Speech Recognition Combining MFCCs and Image Features Speech Recognition Combining MFCCs and Image Featres S. Karlos from Department of Mathematics N. Fazakis from Department of Electrical and Compter Engineering K. Karanikola from Department of Mathematics

More information

Chapter 1: Introduction

Chapter 1: Introduction Chpter : Introduction Slides to ccompny the textbook, First Edition, by, John Wiley nd Sons Publishers, 7. http://www.ddvhid.com Copyright 7 Instructors of courses requiring Vhid's textbook (published

More information

walking. Rhythm is one P-.bythm is as Rhythm is built into our pitch, possibly even more so. heartbeats, or as fundamental to mu-

walking. Rhythm is one P-.bythm is as Rhythm is built into our pitch, possibly even more so. heartbeats, or as fundamental to mu- Ir melody- is sung without its rhythm, it immeditely loses much of its essence. P-.bythm is s fundmentl to mu- sic s pitch, possibly even more so. Rhythm is built into our bodies s hertbets, or s the motion

More information

Sequencer devices. Philips Semiconductors Programmable Logic Devices

Sequencer devices. Philips Semiconductors Programmable Logic Devices hilips emiconductors rogrmmle Logic Devices equencer devices INTODUTION Ten yers go, in their serch for strightforwrd solution to complex sequentil prolems, hilips emiconductors originted rogrmmle Logic

More information

Applications to Transistors

Applications to Transistors CS/EE1012 INTRODUCTION TO COMPUTER ENGINEERING SPRING 2013 LAYERED COMPUTER DESIGN 1. Introduction CS/EE1012 will study complete computer system, from pplictions to hrdwre. The study will e in systemtic,

More information

MILWAUKEE ELECTRONICS NEWS

MILWAUKEE ELECTRONICS NEWS MILWAUKEE ELECTRONICS NEWS Q2 2017 Tecte Fcility Adds SMT Line IN THIS ISSUE Len Chngeovers 2 New SC Product Mgr. 2 HDI Chllenges Solved 3 About Milwukee Electronics Milwukee Electronics designs nd mnufctures

More information

Day care centres (ages 3 to 5) Kindergarten (ages 4 to 5) taken part in a fire drill in her building and started to beep.

Day care centres (ages 3 to 5) Kindergarten (ages 4 to 5) taken part in a fire drill in her building and started to beep. You nd your fmily Here re eight key fire cn tke prt in sfety tips tht you should know Dy cre centres (ges 3 to 5) Kindergrten (ges 4 to 5) flsh Sty wy from hot things tht cn burn! Tell grown-up if you

More information

Chapter 3: Sequential Logic Design -- Controllers

Chapter 3: Sequential Logic Design -- Controllers Chpter 3: Sequentil Logic Design -- Controllers Slides to ccompny the textbook, First Edition, by, John Wiley nd Sons Publishers, 27. http://www.ddvhid.com Copyright 27 Instructors of courses requiring

More information

PRACTICE FINAL EXAM T T. Music Theory II (MUT 1112) w. Name: Instructor:

PRACTICE FINAL EXAM T T. Music Theory II (MUT 1112) w. Name: Instructor: Music Theory II (MUT 1112) w Nme: Instructor: PRACTICE FINAL EXAM Prt-writing (45 minutes; 40%) Complete the prtil progression below with pproprite chord symbols. (There my be more thn one correct nswer.)

More information

For public transport information phone Bus 415. Easy access on all buses. Middleton Alkrington Middleton Junction Chadderton Oldham

For public transport information phone Bus 415. Easy access on all buses. Middleton Alkrington Middleton Junction Chadderton Oldham From 23 April Minor timetble chnges to Mondy to Sturdy dytime journeys. Dytime journeys on Sundys nd public holidys re now run by Stgecoch Bus Esy ccess on ll buses Alkrington Junction Chdderton Oldhm

More information

TAU 2013 Variation Aware Timing Analysis Contest

TAU 2013 Variation Aware Timing Analysis Contest TAU 2013 Vrition Awre Timing Anlysis Contest Debjit Sinh 1, Luís Guerr e Silv 2, Ji Wng 3, Shesh Rghunthn 4, Dileep Netrbile 5, nd Ahmed Shebit 6 1;5 IBM Systems nd Technology Group, 1 Hopewell Junction/

More information

style type="text/css".wpb_animate_when_almost_visible { opacity: 1; }/style

style type=text/css.wpb_animate_when_almost_visible { opacity: 1; }/style style type="text/css".wpb_nimte_when_lmost_visible { opcity: 1; }/style Jul 11, 5 thousnd dollrs week life 2011 5 thousnd dollrs week life. 5 thousnd dollrs week life The $5000 A Week For Life Winner Selection

More information

MODELING OF BLOCK-BASED DSP SYSTEMS Dong-Ik Ko and Shuvra S. Bhattacharyya

MODELING OF BLOCK-BASED DSP SYSTEMS Dong-Ik Ko and Shuvra S. Bhattacharyya MODELING OF BLOCK-BASED DSP SYSTEMS Dong-Ik Ko nd Shuvr S. Bhttchryy Deprtment of Electricl nd Computer Engeerg, nd Institute for Advnced Computer Studies University of Mrylnd, College Prk, 20742, USA

More information

Phosphor: Explaining Transitions in the User Interface Using Afterglow Effects

Phosphor: Explaining Transitions in the User Interface Using Afterglow Effects Phosphor: Explining Trnsitions in the User Interfce Using Afterglow Effects Ptrick Budisch, Desney Tn, Mxime Collom, Dn Roins, Ken Hinckley, Mneesh Agrwl, Shengdong Zho, Gonzlo Rmos To cite this version:

More information

Evaluation of the Suitability of Acoustic Characteristics of Electronic Demung to the Original Demung

Evaluation of the Suitability of Acoustic Characteristics of Electronic Demung to the Original Demung Indin Journl of Science nd Technology, Vol 8(S7), 122 126, April 2015 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 DOI: 10.17485/ijst/2015/v8iS7/64718 Evlution of the Suitility of Acoustic Chrcteristics

More information

LCD VIDEO MONITOR PVM-L1700. OPERATION MANUAL [English] 1st Edition (Revised 2)

LCD VIDEO MONITOR PVM-L1700. OPERATION MANUAL [English] 1st Edition (Revised 2) LCD VIDEO MONITOR PVM-L1700 OPERATION MANUAL [English] 1st Edition (Revised 2) efore operting the unit, plese red this mnul thoroughly nd retin it for future reference. Importnt Sfety Instructions Red

More information

LCD Data Projector VPL-S500U/S500E/S500M

LCD Data Projector VPL-S500U/S500E/S500M LCD Dt Projector VPL-S500U/S500E/S500M Sony presents to you... In tody s world it is esy to crete n impctful nd colorful presenttion full of chrts grphics video clips nd nimtions. To deliver these effective

More information

Panel-mounted Thermostats

Panel-mounted Thermostats sles@jumo.co.uk info.us@jumo.net Dt Sheet 602010 Pge 1/7 Pnel-mounted Thermostts ETH Series Specil fetures Version ccording to DIN EN 14597 Pressure Equipment Directive 97/23/EC Brief description Pnel-mounted

More information

CSEE 6861 CAD of Digital Systems Handout: Lecture #5

CSEE 6861 CAD of Digital Systems Handout: Lecture #5 SEE 6861 of igital Sstems Handout: Lecture #5 2/18/16 Prof. Steven M. Nowick nowick@cs.columbia.edu epartment of omputer Science (and Elect. Eng.) olumbia Universit New York, NY, US ESPRESSO: dvanced Steps

More information

THE MOSSAT COLLECTION BOOK SIX

THE MOSSAT COLLECTION BOOK SIX TH TH PRACTICALITIS OF LARNIN AN WRITIN A TUN MOSSAT COLLCTION BOOK SIX PRACTICALITIS OF LARNIN AN WRITIN A TUN. Along with other gems BY Jim McCombie 1 TH PRACTICALITIS OF LARNIN AN WRITIN A TUN Thnk

More information

Novel Blind Recognition Algorithm of Frame Synchronization Words Based on Soft- Decision in Digital Communication Systems

Novel Blind Recognition Algorithm of Frame Synchronization Words Based on Soft- Decision in Digital Communication Systems RESEARCH ARTICLE Novel Blind Recognition Algorithm of Frame Synchronization Words Based on Soft- Decision in Digital Commnication Systems Jiangyi Qin*, Zhiping Hang, Chnw Li, Shaojing S, Jing Zho College

More information

Star. Catch a. How. Teachers Pack. A starry moonlit adventure. Based on the beautiful picture book by Oliver Jeffers

Star. Catch a. How. Teachers Pack. A starry moonlit adventure. Based on the beautiful picture book by Oliver Jeffers A strry moonlit dventure Bsed on the beutiful picture book by Oliver Jeffers Techers Pck A must-see for smll people ged 3-7, nd grown-up strgzers! Contents 3 - Hello from boy 4 - All bout boy 5 - About

More information

What do these sentences describe? Write P for plants, A for animals or B for both next to each sentence below. They ve got roots.

What do these sentences describe? Write P for plants, A for animals or B for both next to each sentence below. They ve got roots. Unit Nture Lerning Link In this unit you will lern words nd phrses to help you tlk out the nturl world. to tell story using pictures. to write letter out dy out in the countryside. to use the Pst Simple

More information

Cooing, Crying, and Babbling: A Link between Music and Prelinguistic Communication

Cooing, Crying, and Babbling: A Link between Music and Prelinguistic Communication Cooing, Crying, nd Bbbling: A Lin between Music nd Prelinguistic Communiction Michel Byrd, Csdy Bowmn, nd Tshi Ymuchi (mybrd@neo.tmu.edu, csdyb@neo.tmu.edu, tshi-ymuchi@tmu.edu) Deprtment of Psychology,

More information

Appendix A. Quarter-Tone Note Names

Appendix A. Quarter-Tone Note Names 233 Appendx A Qurter-Tone Note Nmes The followng tble lsts ll possble note nmes, rngng from double flts to double shrps, for ech of the 24 possble ptch-clsses. Enhrmonclly equvlent note nmes pper on the

More information

A Model for Scale-Degree Reinterpretation: Melodic Structure, Modulation, and Cadence Choice in the Chorale Harmonizations of J. S.

A Model for Scale-Degree Reinterpretation: Melodic Structure, Modulation, and Cadence Choice in the Chorale Harmonizations of J. S. Empirical Msicology Review Vol. 10, No. 3, 2015 A Model for Scale-Degree Reinterpretation: Melodic Strctre, Modlation, and Cadence Choice in the Chorale Harmonizations of J. S. Bach TREVOR de CLERCQ[1]

More information

Engineer To Engineer Note

Engineer To Engineer Note Engineer To Engineer Note EE-203 Technicl Notes on using Anlog Devices' DSP components nd development tools Contct our technicl support by phone: (800) ANALOG-D or e-mil: dsp.support@nlog.com Or visit

More information

Contents. English. English. Your remote control 2

Contents. English. English. Your remote control 2 English Contents Your remote control 2 Instlltion Preprtion 3 Connect your computer 4 Switch on 5 Select your enu lnguge 5 Serch for nd Store chnnels Automtic instlltion 7 nul instlltion 8 Reshuffle the

More information

When it comes to creating music, composers like to push the limits. Get ready to hear how!

When it comes to creating music, composers like to push the limits. Get ready to hear how! When it comes to creting music, composers like to push the limits. Get redy to her how! Ntionl Symphony Orchestr Young People s Concert Ankush Kumr Bhl, conductor Mriss Regni, NSO violinist nd host Dvid

More information

months ending June 30th 2001 Innovators in image processing

months ending June 30th 2001 Innovators in image processing 101010011010 110101101 101010011 111101110101101111 1010100 1111011101011011111011101 011111011101011011111011101 110111110111010110111 010 Six 11010 1011101 11011111011101111 11011101 months ending June

More information

c:: Frequency response characteristics for sinusoidal movement in the fovea and periphery* ==> 0.' SOO O.S 2.0

c:: Frequency response characteristics for sinusoidal movement in the fovea and periphery* ==> 0.' SOO O.S 2.0 Freqency response characteristics for sinsoidal movement in the fovea and periphery* C. WILLIAM TYLER and JEAN TORRES Northeastern University, Boston, Massachsetts 211 Threshold sensitivity was measred

More information

Train times. Monday to Sunday

Train times. Monday to Sunday Trin times Mony to Suny Services between: Mtlock Nottinghm Derby Newrk Cstle 3 Vli from 22n July to 7th October 2018 This timetble replces the Est Milns Trins Trin times 3 timetble between the bove tes

More information

MINIMED 640G SYSTEM^ Getting Started. WITH THE MiniMed 640G INSULIN PUMP

MINIMED 640G SYSTEM^ Getting Started. WITH THE MiniMed 640G INSULIN PUMP MINIMED 640G SYSTEM^ Getting Started WITH THE MiniMed 640G INSULIN PUMP let s get started! Table of Contents Section 1: Getting Started... 3 Getting Started with the MiniMed 640G Inslin Pmp...3 1.1 Pmp

More information

Big Adventures. Why might you like to have an adventure? What kind of adventures might you enjoy?

Big Adventures. Why might you like to have an adventure? What kind of adventures might you enjoy? UNIT 7Tourism Ledership Sports Big Adventures Lesson One Before you red Why might you like to hve n dventure? Wht kind of dventures might you enjoy? Wht re these people doing? Would you be frid to try?

More information

LOGOMANUAL. guidelines how to use Singing Rock logotype. Version 1.5 English. Lukáš Matěja

LOGOMANUAL. guidelines how to use Singing Rock logotype. Version 1.5 English. Lukáš Matěja LOGOMANUAL guidelines how to use Singing Rock logotype In cse of ny questions, contct our grphic designer Lukáš Mtěj +420 775 282 064 luks.mtej@singingrock.cz Version 1.5 English PRIMARY LOGOTYPE Primry

More information

Standards Overview (updated 7/31/17) English III Louisiana Student Standards by Collection Assessed on. Teach in Collection(s)

Standards Overview (updated 7/31/17) English III Louisiana Student Standards by Collection Assessed on. Teach in Collection(s) Stndrds Overview (updted 7/31/17) 2017-2018 English III Louisin Student Stndrds y Collection Tech in Collection(s) Stndrd Numer Wording of Stndrd 1 2 3 4 5 6 Assessed on E.O.C. Test RL.1 RL.2 RL.3 RL.4

More information

CMST 220 PUBLIC SPEAKING

CMST 220 PUBLIC SPEAKING CMST 220 PUBLIC SPEKING RED G. METZGER, INSTRUCTOR OICE: RINIER 213 PHONE: 253-964-6659 fmetzger@pierce.ctc.edu O V E R V I E W PUBLIC SPEKING IS N OPPORTUNITY TO LOOK GOOD IN RONT O PEOPLE. LL YOUR LIE

More information

lookbook Higher Education

lookbook Higher Education Higher Eduction Higher Eduction Introduction Your digitl signge success hinges on creting unique nd integrted cmpus experience for students, fculty, lumni nd visitors. The ever-expnding rnge of solutions

More information

Cast Away on the Letter A

Cast Away on the Letter A Cast Away on the Letter A TEACHER S GUIDE ELA COMMON CORE STANDARDS 4TH GRADE: For 4th Grade: Key Ideas and Details CCSS.ELA-LITERACY.RL.4.2 Determine a theme of a story, drama, or poem from details in

More information

Unit 10: I don t feel very well

Unit 10: I don t feel very well Unit 10: I don t feel very well 10 1 The story: We meet Clire, phrmist, nd Greg, ustomer t the phrmy. Greg initilly goes to the phrmy to get something for hedhe, ut then he flls for Clire nd goes k repetedly

More information

ViaLite SatComs Fibre Optic Link

ViaLite SatComs Fibre Optic Link ViLite StComs Fibre Optic Link User Mnul LRx-L-HB- 8 CR2874 14/04/11 Pulse Power & Mesurement Ltd, 65 Shrivenhm Hundred Business Prk, Wtchfield, Swindon, Wiltshire SN68TY, UK Tel +44 (0)1793 784389 Fx

More information

Montgomery Modular Exponentiation on Reconfigurable Hardware æ

Montgomery Modular Exponentiation on Reconfigurable Hardware æ Montgomery Modlar Exponentiation on Reconfigrable Hardware æ Thomas Blm Worcester Polytechnic Institte ECE Department Worcester, MA 0609-2280, USA tblm@ece.wpi.ed Christof Paar christof@ece.wpi.ed Abstract

More information

Pro Series White Toner and Neon Range

Pro Series White Toner and Neon Range WHEN YOU REGISTER YOUR PRODUCT Pro Series White Toner nd Neon Rnge Discover New Dimension in Colour printing for grment decortion, signge nd design Pro7411WT White Toner (CMYW) A4 printer Pro8432WT White

More information

A Buyers Guide to Laser Projection

A Buyers Guide to Laser Projection The Eropean Digital Cinema Form A Byers Gide to Laser Projection AUTUMN 2018 Table of Contents Slides 2-5 Introdctory notes Slides 6-22 1: Technical Considerations Slides 23-31 2. Financial and lifetime

More information

SEA SHEET MUSIC. Grace. low voice and piano. Elizabeth Alexander. Seafarer Press

SEA SHEET MUSIC. Grace. low voice and piano. Elizabeth Alexander. Seafarer Press SEA-127-00 - SHEET MUSC Grce low voice nd pino Elizbeth Alexnder n memory of Henry Grce Tenderly low voice nd pino E / E / F/A 4 4 Elizbeth Alexnder 6 E / F /A G7 t's hold peo my ple hed sty up to f ge

More information

Outline. Circuits & Layout. CMOS VLSI Design

Outline. Circuits & Layout. CMOS VLSI Design CMO VLI esign Circuits & Lyout Outline Brief History CMO Gte esign Pss Trnsistors CMO Ltches & Flip-Flops tndrd Cell Lyouts tick igrms lide 2 Brief History 958: First integrted circuit Flip-flop using

More information

Chapter 2 Social Indicators Research and Health-Related Quality of Life Research

Chapter 2 Social Indicators Research and Health-Related Quality of Life Research Chpter 2 Socil Indictors Reserch nd Helth-Relted Qulity o Lie Reserch Alex C. Michlos Introduction Reserch relted to qulity-o-lie ought to beneit rom eorts o reserchers trined in diverse disciplines, ddressing

More information

With Ease. BETTY WAGNER Associate Trinity College London, Associate Music Australia READING LEDGER LINE NOTES

With Ease. BETTY WAGNER Associate Trinity College London, Associate Music Australia READING LEDGER LINE NOTES READING LEDGER LINE NOTES With Ease f G f o o BETTY WAGNER Associate Trinity College London, Associate Msic Astralia READING LEDGER LINE NOTES A Nova WITH EASE Book Company Page Pblication http://www.msic-with-ease.com

More information

Successful Transfer of 12V phemt Technology. Taiwan 333, ext 1557 TRANSFER MASK

Successful Transfer of 12V phemt Technology. Taiwan 333, ext 1557 TRANSFER MASK Successful Trnsfer of V phemt Technology Json Fender 1, Monic C De Bc 1, Jenn Hw Hung 1, Monte Miller 1, Jose Surez 1 Iris Hsieh 2, Y.C. Wng 2 1 Freescle Semiconductor, RF Division, 20 E. Elliot Rd., Tempe,

More information

Automatic Repositioning Technique for Digital Cell Based Window Comparators and Implementation within Mixed-Signal DfT Schemes

Automatic Repositioning Technique for Digital Cell Based Window Comparators and Implementation within Mixed-Signal DfT Schemes utomti Repositioning Tehnique for Digitl ell sed Window omprtors nd Implementtion within Mixed-Signl DfT Shemes D. De Venuto DEE- Politenio di ri, Itly, d.devenuto@polib.it M. J. Ohletz MI Semiondutor,

More information

A New Concept of Providing Telemetry Data in Real Time

A New Concept of Providing Telemetry Data in Real Time The Spce Congress Proceedings 1967 (4th) Spce Congress Proceedings Apr 3rd, 12: AM A New Concept of Providing Telemetry Dt in Rel Time John M. Bllock Pn Americn World Airwys, GMRD, Ptrick Air Force Bse,

More information

TAP 413-1: Deflecting electron beams in a magnetic field

TAP 413-1: Deflecting electron beams in a magnetic field TAP 413-1: Deflecting electron bems in mgnetic field Circulr control Mgnetic fields re often used to steer bems of chrged prticles, in situtions from teleision tube to lrge-scle prticle ccelertor. The

More information

lookbook Transportation - Airports

lookbook Transportation - Airports Trnsporttion - Airports Trnsporttion - Airports Introduction By using digitl signge for generl informtion, wyfinding, lerts nd dvertising in key loctions, irports cn elevte their brnd imge nd provide experiences

More information

Tran Thi Thanh Thao Ticker: STB - Exchange: HSX Recommend: HOLD Target price 2011: VND 15,800 STATISTICS

Tran Thi Thanh Thao   Ticker: STB - Exchange: HSX Recommend: HOLD Target price 2011: VND 15,800 STATISTICS SAI GON THUONG TIN JOINT STOCK COMMERCIAL BANK (STB) Price on 23/09/2011 Industry: Finnce & Bnking Trn Thi Thnh Tho Emil: Tho.TrnThiThnh @tls.vn Ticker: STB - Exchnge: HSX Recommend: HOLD Trget price 2011:

More information

Step 2 I was watching TV when... p. 4. Simple Past vs. Past Continuous Something, anything, nothing, everything

Step 2 I was watching TV when... p. 4. Simple Past vs. Past Continuous Something, anything, nothing, everything bridge module indexa Step 1 The River Thmes p. 1 Step 2 I ws wtching TV when... p. 4 Step Free time p. 6 Step 4 Tlking bout experiences p. 8 nd Usge Simple Pst Used to Simple Pst vs. Pst Continuous Something,

More information

PIRELLI BRANDBOOK 4. IDENTITY DESIGN

PIRELLI BRANDBOOK 4. IDENTITY DESIGN PIRELLI BRANDBOOK 4. IDENTITY DESIGN 4.01 LOGOTYPE 4.01 The PIRELLI logotype The logotype is one of the most importnt elements of PIRELLI s visul identity. The logotype consists of the lettering PIRELLI

More information

Contents 2. Notations Used in This Guide 6. Introduction to Your Projector 7. Using Basic Projector Features 29. Setting Up the Projector 16

Contents 2. Notations Used in This Guide 6. Introduction to Your Projector 7. Using Basic Projector Features 29. Setting Up the Projector 16 User's Guide Contents 2 Nottions Used in This Guide 6 Introduction to Your Projector 7 Projector Fetures... 8 Quick nd Esy Setup... 8 Esy Wireless Projection... 8 Flexible Connectivity... 9 Connect with

More information

Product Overview 2009

Product Overview 2009 Prodct Overview 2009 Living high tech 1 Contents Editorial...3 The new ECoS 4 The new ECoS - Jst Play...5 Fnctions detailed...7 Expandibility...9 ECoS 10 ECoS...10 Expandibility...11 Navigator 12 Eqipment

More information

LCD VIDEO MONITOR PVM-L3200. OPERATION MANUAL [English] 1st Edition (Revised 1)

LCD VIDEO MONITOR PVM-L3200. OPERATION MANUAL [English] 1st Edition (Revised 1) LCD VIDEO MONITOR PVM-L3200 OPERATION MANUAL [English] 1st Edition (Revised 1) efore operting the unit, plese red this mnul thoroughly nd retin it for future reference. Importnt Sfety Instructions Red

More information

An Efficient Spurious Power Suppression Technique (SPST) and its Applications on MPEG-4 AVC/H.264 Transform Coding Design

An Efficient Spurious Power Suppression Technique (SPST) and its Applications on MPEG-4 AVC/H.264 Transform Coding Design An Efficient Sprios Sppression echniqe (SPS) and s Applications on PEG-4 AVC/H64 ransform Coding De Kan-Hng Chen, Ko-Chan Chao, Jinn-Shyan Wang, Yan-Sn Ch Department of Electrical Engineering, National

More information