Systolic and Pipelined. Processors

Size: px
Start display at page:

Download "Systolic and Pipelined. Processors"

Transcription

1 Gaduate Institute of Electonics Engineeing, NTU Systolic and Pipelined Why Systolic Pocessos Achitectue? Souces: VLSI Signal Pocessing ÜÜ Ande Hon, Jason Handube, Michelle Gunning, Beman, J. Kim, Heiko Schoede, Hai Tao, Shaaban ACCESS IC LAB

2 Systolic Pocessos Discussed on Monday, May Achitectue fo Matix Matix multiplication 2. Achitectue fo Matix Vecto Multiplication 3. Convolution, one-dimensional and polynomial multiplication 4. Pipelined Systolic matche fo many gene pattens in a long chomosome. Count 100%, 75% and 50 % matches. 5. Systolic pocesso that solves Petick Function, SAT, and SAT with minimal liteal cost poblems. (not shown hee, if you ae inteested, ask Newton fo the solution).

3 Methodology of designing systolic pocessos. 1. Wite full equation fo esults. 2. Skew the input flows o put inputs to pocessos. 3. The inputs may come fom two diffeent diections, these diections may be opposite 4. Sometimes the pocessos must be sepaated by othe types of pocessos o just delays (do-nothing egistes clocked by geneal clock). Howeve, sometimes skewing input data is sufficient fo this. 5. Daw the stuctue of pocessos. 6. Design data path of each pocesso. 7.Veify the coect opeation. Daw snapshots, use colo pencils. 8. Design the contolle of each pocesso o a SIMD global contolle. Remembe about synchonization. Each pocesso must complete its wok in the exactly same moment (clock pulse). It is somehow simila to Sieve of Eatostenes but has inteesting ealization of logic opeatos and use of andom numbe geneato..

4 Pipelined Computations Pipelined pogam divided into a seies of tasks that have to be completed one afte the othe. Each task executed by a sepaate pipeline stage Data steamed fom stage to stage to fom computation f, e, d, c, b, a P1 P2 P3 P4 P5

5 Pipelined Computations Computation consists of data steaming though pipeline stages Execution Time = Time to fill pipeline (P-1) P = # of pocessos N = # of data items (assume P < N) + Time to un in steady state (N-P+1) + Time to empty pipeline (P-1) f, e, d, c, b, a P1 P2 P3 P4 P5 P5 P4 P3 P2 P1 a b a b c a b c d a b c d e a b c d e f c d e f d e f e f f time

6 Pipelined Example: Sieve of Eatosthenes Goal is to take a list of integes geate than 1 and poduce a list of pimes E.g. Fo input , output is Fan s pipelined appoach (a little diffeent than the book): Pocesso P_i divides each input by the ith pime If the input is divisible (and not equal to the diviso), it is maked (with a negative sign) and fowaded If the input is not divisible, it is fowaded Last pocesso only fowads unmaked (positive) data [pimes]

7 Sieve of Eatosthenes Pseudo-Code Code fo pocesso Pi (and pime p_i): x=ecv(data,p_(i-1)) If (x>0) then If (p_i divides x and p_i = x ) then send(-x,p_(i+1) If (p_i does not divide x o p_i = x) then send(x, P_(i+1)) Else Send(x,P_(i+1)) / Code fo last pocesso x=ecv(data,p_(i-1)) If x>0 then send(x,output) P2 P3 P5 P7 out

8 Simple Sting Matching Steam text past set of matches =c1? =c2? =c3? & & &

9 Matix Vecto Multiplication Conside multiplying a 3x2 X 2x1 matix:

10 Systolic Aays

11 Y values goes left, X values go ight, A values fan in T0 T1 T2 T3 T4 T5 T6 T7

12 The pocesso 1. The pocesso was designed on Monday by students. 2. Ask fo thei notes o design you own. 3. You need to emembe data path design and egiste tansfe design, as well as FSM synthesis, in geneal.

13 Systolic Aay Example: 3x3 Systolic Aay Matix Multiplication Evey cell is like this: ai bi egiste * clea + egiste Clock to all thee egistes egiste 1. Obseve multiplie/adde combination, so typical 2. Obseve accumulation of esults in-place. Evey cell of final matix is a pocesso. Results emain in these pocessos, next they should be shifted-out, if necessay.

14 Systolic Aay Example: 3x3 Systolic Aay Matix Multiplication Pocessos aanged in a 2-D gid Each pocesso accumulates one element of the poduct Alignments in time b2,2 b2,1 b1,2 b2,0 b1,1 b0,2 b1,0 b0,1 b0,0 Columns of B Rows of A a0,2 a0,1 a0,0 a1,2 a1,1 a1,0 a2,2 a2,1 a2,0 T = 0 Example souce:

15 Systolic Aay Example: 3x3 Systolic Aay Matix Multiplication Pocessos aanged in a 2-D gid Each pocesso accumulates one element of the poduct Alignments in time b2,2 b2,1 b1,2 b2,0 b1,1 b0,2 b1,0 b0,1 b0,0 a0,2 a0,1 a0,0 a0,0*b0,0 a1,2 a1,1 a1,0 a2,2 a2,1 a2,0 T = 1 Example souce:

16 Systolic Aay Example: 3x3 Systolic Aay Matix Multiplication Pocessos aanged in a 2-D gid Each pocesso accumulates one element of the poduct Alignments in time b2,2 b2,1 b1,2 b2,0 b1,1 b0,2 b1,0 b0,1 a0,2 a0,1 a0,0*b0,0 + a0,1*b1,0 a0,0 a0,0*b0,1 b0,0 a1,2 a1,1 a1,0 a1,0*b0,0 a2,2 a2,1 a2,0 T = 2 Example souce:

17 Systolic Aay Example: 3x3 Systolic Aay Matix Multiplication Pocessos aanged in a 2-D gid Each pocesso accumulates one element of the poduct Alignments in time b2,2 b2,1 b1,2 b2,0 b1,1 b0,2 a0,2 a0,0*b0,0 + a0,1*b1,0 + a0,2*b2,0 a0,1 a0,0*b0,1 + a0,1*b1,1 a0,0 a0,0*b0,2 b1,0 b0,1 a1,2 a1,1 a1,0*b0,0 + a1,1*b1,0 a1,0 a1,0*b0,1 b0,0 a2,2 a2,1 a2,0 a2,0*b0,0 T = 3 Example souce:

18 Systolic Aay Example: 3x3 Systolic Aay Matix Multiplication Pocessos aanged in a 2-D gid Each pocesso accumulates one element of the poduct Alignments in time b2,2 b2,1 b1,2 a0,0*b0,0 + a0,1*b1,0 + a0,2*b2,0 a0,2 a0,0*b0,1 + a0,1*b1,1 + a0,2*b2,1 a0,1 a0,0*b0,2 + a0,1*b1,2 b2,0 b1,1 b0,2 a1,2 a1,0*b0,0 + a1,1*b1,0 + a1,2*a2,0 a1,1 a1,0*b0,1 +a1,1*b1,1 a1,0 a1,0*b0,2 a2,2 a2,1 b1,0 a2,0*b0,0 + a2,1*b1,0 b0,1 a2,0 a2,0*b0,1 T = 4 Example souce:

19 Systolic Aay Example: 3x3 Systolic Aay Matix Multiplication Pocessos aanged in a 2-D gid Each pocesso accumulates one element of the poduct Alignments in time b2,2 a0,0*b0,0 + a0,1*b1,0 + a0,2*b2,0 a0,0*b0,1 + a0,1*b1,1 + a0,2*b2,1 a0,2 a0,0*b0,2 + a0,1*b1,2 + a0,2*b2,2 b2,1 b1,2 a1,0*b0,0 + a1,1*b1,0 + a1,2*a2,0 a1,2 a1,0*b0,1 +a1,1*b1,1 + a1,2*b2,1 a1,1 a1,0*b0,2 + a1,1*b1,2 a2,2 b2,0 a2,0*b0,0 + a2,1*b1,0 + a2,2*b2,0 b1,1 a2,1 a2,0*b0,1 + a2,1*b1,1 b0,2 a2,0 a2,0*b0,2 T = 5 Example souce:

20 Systolic Aay Example: 3x3 Systolic Aay Matix Multiplication Pocessos aanged in a 2-D gid Each pocesso accumulates one element of the poduct Alignments in time a0,0*b0,0 + a0,1*b1,0 + a0,2*b2,0 a0,0*b0,1 + a0,1*b1,1 + a0,2*b2,1 a0,0*b0,2 + a0,1*b1,2 + a0,2*b2,2 b2,2 a1,0*b0,0 + a1,1*b1,0 + a1,2*a2,0 a1,0*b0,1 +a1,1*b1,1 + a1,2*b2,1 a1,2 a1,0*b0,2 + a1,1*b1,2 + a1,2*b2,2 a2,0*b0,0 + a2,1*b1,0 + a2,2*b2,0 b2,1 a2,2 a2,0*b0,1 + a2,1*b1,1 + a2,2*b2,1 b1,2 a2,1 a2,0*b0,2 + a2,1*b1,2 T = 6 Example souce:

21 Systolic Aay Example: 3x3 Systolic Aay Matix Multiplication Pocessos aanged in a 2-D gid Each pocesso accumulates one element of the poduct Alignments in time a0,0*b0,0 + a0,1*b1,0 + a0,2*b2,0 a0,0*b0,1 + a0,1*b1,1 + a0,2*b2,1 a0,0*b0,2 + a0,1*b1,2 + a0,2*b2,2 Done a1,0*b0,0 + a1,1*b1,0 + a1,2*a2,0 a1,0*b0,1 +a1,1*b1,1 + a1,2*b2,1 a1,0*b0,2 + a1,1*b1,2 + a1,2*b2,2 b2,2 a2,0*b0,0 + a2,1*b1,0 + a2,2*b2,0 a2,0*b0,1 + a2,1*b1,1 + a2,2*b2,1 a2,2 a2,0*b0,2 + a2,1*b1,2 + a2,2*b2,2 T = 7 Example souce:

22 Hexagonal Systolic Aay fo matix-matix multiplication This is an inteesting modification of pevious design in which movement is in thee diections and the esults ae not stoed but flow out It is you task to design each pocesso in detail

23 Example Systolic Algoithm: Matix Multiplication Poblem: multiply two nxn matices A ={a_ij} and B={b_ij}. Poduct matix will be R={_ij}. Systolic solution uses 2D aay with NxN cells, 2 input steams and 2 output steams

24 Systolic Matix Multiplication a44 a34 a24 a14 == == == b41 b42 b43 b44 a43 a33 a23 a13 == == b31 b32 b33 b34 a42 a32 a22 a12 === b21 b22 b23 b24 a41 a31 a21 a P11 b11 b12 b13 b P21 P P31 P22 P P41 P32 P23 P14 P42 P33 P24 P43 P34 P44

25 k, Opeation at each cell Each cell updates at each time step as shown i j below 0 i, j initialized to 0 a i, k b k, j k 1 i, j k i, j + a = i, k b k, j b k, j a i, k

26 Data Flow fo Systolic MM Beat 1 Beat 2 a11 b11 1 1,1 a 21 a ,1 2 1,1 b ,2 b 12

27 Data Flow fo Systolic MM Beat 3 Beat 4 a 31 a ,1 a ,1 3 1,1 1 2,2 b ,2 b ,3 b 13 a 41 a ,1 a ,1 a ,1 1 3, 2 4 1,1 2 2,2 b ,2 1 2,3 b ,3 b ,4 b 14

28 Data Flow fo Systolic MM Beat 5 Beat 6 a 42 a ,1 a ,1 4 2,1 2 3,2 1,1 3 2,2 4 1,2 2 2,3 b ,3 b ,4 b 24 a 43 a ,1 4 3,1 2,1 1,1 1, 2 3 3,2 4 2,2 3 2,3 4 1,3 b ,4 b ,2 1 3,3 1 2,4 2 4,2 1 4,3 2 3,3 1 3,4 2 2,4

29 Data Flow fo Systolic MM Beat 7 Beat 8 1,1 1,1 1, 2 2,1 1, 2 2,1 a ,1 3,1 2, 2 1, , 2 2,3 3 4,2 2 4,3 3 3,3 2 3,4 3 2,4 4 1,4 b 44 3,1 2, 2 1, 3 4,1 3, 2 4 4,2 2, 3 3 4,3 4 3,3 3 3,4 4 2,4 1,4 1 4,4 2 4,4

30 Data Flow fo Systolic MM Beat 9 Beats 10 and 11 1,1 1, 2 2,1 2,1 1,1 1, 2 3,1 2, 2 1, 3 4,1 3, 2 2, 3 1,4 3,1 2, 2 1, 3 4,2 3, 3 2, 4 4,1 3, 2 2, 3 4,2 3, 3 2, ,3 3,4 3 4,4 1,4 2,1 1,1 1, 2 3,1 2, 2 1, 3 2 4,3 3, 4 4 4,4 4,1 2, 3 3, 1,4 4,2 3, 3 2, 4 4,3 3, 4 4,4

31 Gaduate Institute of Electonics Engineeing, NTU 1. Use this method fo 1D polynomial multiplication 2. Genealize to two dimensions. ÜÜ ACCESS IC LAB

32 Design B1 Peviously poposed fo cicuits to implement a patten matching pocesso and = fo a cicuit to implement polynomial multiplication. - Boadcast input, move esults, weights stay - (Semi-systolic convolution aays with global data communication

33 Design B2 = = The path fo moving y i s is wide then w i s because of y i s cay moe bits then w i s in numeical accuacy. The use of multiplie-accumulatos may also help incease pecision of the esult, since exta bit can be kept in these accumulatos with modest cost. Boadcast input, move weights, esults stay [(Semi-) systolic convolution aays with global data communication]

34 Design F When numbe of cell is lage, the adde can be implemented as a pipelined adde tee to avoid lage delay. Design of this type using unbounded fan-in. - Fan-in esults, move inputs, weights stay - Semi-systolic convolution aays with global data communication

35 Design R1 Design R1 has the advantage that it dose not equie a bus, o any othe global netwok, fo collecting output fom cells. The basic ideal of this de-sign has been used to implement a patten matching chip. - Results stay, inputs and weights move in opposite diections - Pue-systolic convolution aays with global data communication

36 Design R2 Multiplie-accumulato can be used effectively and so can tag bit method to signal the output of each cell. Compaed with R1, all cells wok all the time when additional egiste in each cell to hold a w value. - Results stay, inputs and weights move in the same diection but at diffeent speeds - Pue-systolic convolution aays with global data communication

37 Design W1 This design is fundamental in the sense that it can be natually extend to pefom ecusive filteing. This design suffes the same dawback as R1, only appoximately 1/2 cells wok at any given time unless two independent computation ae inteleaved in the same aay. -Weights stay, inputs and esults move in opposite diection - Pue-systolic convolution aays with global data communication

38 Design W2 This design lose one advan-tage of W1, the constant esponse time. This design has been extended to implement 2-D convolution, whee high thoughputs athe than fast esponse ae of concen. -Weights stay, inputs and esults move in the same diection but at diffeent speeds - Pue-systolic convolution aays with global data communication

39 Remaks Above designs ae all possible systolic designs fo the convolution poblem. Using a systolic contol path, weight can be selected onthe-fly to implement intepolation o adaptive filteing. We need to undestand pecisely the stengths and dawbacks of each design so that an appopiate design can be selected fo a given envionment. Fo impoving thoughput, it may be wothwhile to implement multiplie and adde sepaately to allow ovelapping of thei execution. (Such as next page show) When chip pin is consideed, pue-systolic equies fou; semi-systolic equies thee I/O pots.

40 Ovelapping the executions of multiply-and-add in design W1

41 Citeia and advantages The design makes multiple use of each input data item Because of this popety, systolic systems can achieve high thoughputs with modest I/O bandwidths fo outside communication. The design uses extensive concuency Concuency can be obtained by pipelining the stages involved in the computation of each single esult, by multipocessing many esults in paallel, o by both.

42 Citeia and advantages Thee ae only a few types of simple cells To achieve pefomance goals, a systolic system is likely to use a lage numbe of cells which must be simple and of only a few types to cutail design and implementation cost. Data and contol flow ae simple and egula Pue systolic system totally avoid long-distance o iegula wies fo data communication.

43 Othogonal Tiangulaization.. On-the-fly least-squaes solutions using one and two dimensional systolic aay, with p=4.

44 paallel mege initial situation: x1 x2 x3 x4 x5 x6 x x17 x18 y1 y2 y3 y4 y5 y6 y y17 y18 1.) sot columns (odd-even-tansposition sot) 2.) sot ows (odd-even-tansposition sot) soted!!!!

45 0-1 pinciple The 0-1 pinciple states that if all sequences of 0 and 1 ae soted popely than this is a coect sote. The sote must be based on moving data. 0s 1s 0s 0s initially afte vetical sot 1s 0s afte hoizontal sot 1s

46 MIMD-mesh (clocked) min max Time: 2n

47 systolic mege

48 systolic mege

49 systolic mege

50 systolic mege

51 systolic mege

52 systolic mege

53 systolic mege

54 systolic mege

55 systolic mege

56 systolic mege

57 systolic mege

58 systolic mege

59 systolic mege

60 systolic mege

61 systolic mege

62 systolic mege

63 systolic mege

64 systolic mege

65 systolic mege

66 systolic mege

67 systolic mege systolic mege soted!!!

68 Poblems to think about 1. Compae these designs with sotes shown ealie in class 2. Use these ideas to edesign sotes/absobes and sotes that emove epeated elements. 3. Think about othe applications of the ideas shown hee fo sot and mege.

69 Applications of Systolic Aay - Signal and image pocessing: FTR, IIR filteing, and 1-D convolution. 2-D convolution and coelation. Discete Fuie tansfom Intepolation 1-D and 2-D median filteing Geometic waping

70 Applications of Systolic Aay - Matix aithmetic: Matix-vecto multiplication Matix-matix multiplication Matix tiangulaization (solution of linea systems, matix invesion) QR decomposition (eigenvalue, least-squae computation) Solution of tiangula linea systems

71 Applications of Systolic Aay - Non-numeic applications: Data stuctue Gaph algoithm Language ecognition Dynamic pogamming Encode (polynomial division) Relational data-base opeations

INDIVIDUALIZATION FEATURE OF HEAD-RELATED TRANSFER FUNCTIONS BASED ON SUBJECTIVE EVALUATION. Satoshi Yairi, Yukio Iwaya and Yôiti Suzuki

INDIVIDUALIZATION FEATURE OF HEAD-RELATED TRANSFER FUNCTIONS BASED ON SUBJECTIVE EVALUATION. Satoshi Yairi, Yukio Iwaya and Yôiti Suzuki INDIVIDUALIZATION FEATURE OF HEAD-RELATED TRANSFER FUNCTIONS BASED ON SUBJECTIVE EVALUATION Satoshi Yaii, Yukio Iwaya and Yôiti Suzuki Reseach Institute of Electical Communication / Gaduate School of Infomation

More information

Stochastic Extension of the Attention-Selection System for the icub

Stochastic Extension of the Attention-Selection System for the icub Stochastic Extension of the Attention-Selection System fo the icub Technical Repot (in pepaation) H. Matinez, M. Lungaella, and R. Pfeife Atificial Intelligence Laboatoy Depatment of Infomatics Univesity

More information

APPLICATION OF THE WALSH TRANSFORM IN AN INTEGRATED ALGORITHM FO R THE DETECTION OF INTERICTAL SPIKES

APPLICATION OF THE WALSH TRANSFORM IN AN INTEGRATED ALGORITHM FO R THE DETECTION OF INTERICTAL SPIKES APPLICATIO OF THE WALSH TRASFORM I A ITEGRATED ALGORITHM FO R THE DETECTIO OF ITERICTAL SPIKES D. Sanchez, M. Adjouadi, A. Baeto, P. Jayaka, I. Yaylali Electical & Compute Engineeing, Floida Intenational

More information

Instructions For Living a Healthy Life

Instructions For Living a Healthy Life ARISE Homo Sapiens Opeato s Manual: Instuctions Fo Living a Healthy Life Table of Contents Tips fo Teaching ARISE Life Management Skills...3 ARISE Foundation, Ode Toll-Fee: 1-888-680-6100, Copyight 1996-2014

More information

Joint Iterative Equalization and Decoding for 2-D ISI Channels

Joint Iterative Equalization and Decoding for 2-D ISI Channels Joint Iteative Equalization and Decoding fo 2-D ISI Channels Joseph A. O Sullivan, Naveen Singla, Yunxiang Wu, Ronald S. Indec Electonic Systems and Signals Reseach Laboatoy (ESSRL) Magnetics and Infomation

More information

Uncoordinated Checkpointing. Rollback-Recovery. The Domino Effect. The Domino Effect. Easy to understand No synchronization overhead Flexible p

Uncoordinated Checkpointing. Rollback-Recovery. The Domino Effect. The Domino Effect. Easy to understand No synchronization overhead Flexible p Uncoodinated Checkpointing Rollback-Recovey Easy to undestand No synchonization ovehead Flexible p can choose when to checkpoint To ecove fom a cash: m4 m6 m7 m4 m6 m7 go back to last checkpoint estat

More information

Chapter 16. Simple patterns of inheritance

Chapter 16. Simple patterns of inheritance Chapte 16 Simple pattens of inheitance 1 Genotpe and phenotpe 1) Allele A vaiant fom of a gene (e.g., Height of pea plant : tall, shot) 2) Genotpe -Genetic composition of individual -Homozgous (an individual

More information

SMARTPHONE-BASED USER ACTIVITY RECOGNITION METHOD FOR HEALTH REMOTE MONITORING APPLICATIONS

SMARTPHONE-BASED USER ACTIVITY RECOGNITION METHOD FOR HEALTH REMOTE MONITORING APPLICATIONS SMARTPHONE-BASED USER ACTIVITY RECOGNITION METHOD FOR HEALTH REMOTE MONITORING APPLICATIONS Igo Bisio Fabio Lavagetto Maio Machese Andea Sciaone Univesity of Genoa DYNATECH {igo.bisio fabio.lavagetto maio.machese

More information

Radiation Protection Dosimetry, Volume II: Technical and Management System Requirements for Dosimetry Services. REGDOC-2.7.

Radiation Protection Dosimetry, Volume II: Technical and Management System Requirements for Dosimetry Services. REGDOC-2.7. Radiation Potection Dosimety, Volume II: Technical and Management System Requiements fo Dosimety Sevices REGDOC-2.7.2, Volume II Apil 2018 Dosimety, Volume II: Regulatoy document REGDOC-2.7.2, Volume II

More information

Measurement uncertainty of ester number, acid number and patchouli alcohol of patchouli oil produced in Yogyakarta

Measurement uncertainty of ester number, acid number and patchouli alcohol of patchouli oil produced in Yogyakarta Measuement uncetainty of este numbe, acid numbe and patchouli alcohol of patchouli oil poduced in Yogyakata Reni Banowati Istiningum, Azis Saepuloh, Widatul Jannah, and Didit Waskito Aji Citation: AIP

More information

Objective Find the Coefficient of Determination and be able to interpret it. Be able to read and use computer printouts to do regression.

Objective Find the Coefficient of Determination and be able to interpret it. Be able to read and use computer printouts to do regression. Section 3.C Objective Find the Coefficient of Detemination and be able to intepet it. Be able to ead and use compute pintouts to do egession. Relevance To be able to find a model to best epesent quantitative

More information

Multiscale Model of Oxygen transport in Diabetes

Multiscale Model of Oxygen transport in Diabetes BENG 221: Poblem Solving Poject Multiscale Model of Oxygen tanspot in Diabetes Decembe 1, 2016 Austin Budick Nafeesa Khan Sihita Rudaaju Motivation Diabetes emains a significant health condition today,

More information

HaLoop: Efficient Iterative Data Processing On Large Clusters

HaLoop: Efficient Iterative Data Processing On Large Clusters HaLoop: Efficient Iteative Data Pocessing On Lage Clustes Yingyi Bu, UC Ivine Bill Howe, UW agda Balazinska, UW ichael D. Enst, UW Hoizon http://clue.cs.washington.edu/ QuickTime ᆰ and a decompesso ae

More information

OPTIMUM AUTOFRETTAGE PRESSURE IN THICK CYLINDERS

OPTIMUM AUTOFRETTAGE PRESSURE IN THICK CYLINDERS Junal Meanial Decembe 007, No. 4, - 4 OTIMUM AUTOFRETTAGE RESSURE IN THICK CLINDERS Aman Ayob *, M. Kabashi Elbashee Depatment of Applied Mechanics, Faculty of Mechanical Engineeing, Univesiti Tenologi

More information

HTGR simulations in PSI using MELCOR 2.2

HTGR simulations in PSI using MELCOR 2.2 WIR SCHAFFEN WISSEN HEUTE FÜR MORGEN Jamo Kalilainen :: Paul Schee Institut HTGR simulations in PSI using MELCOR 2.2 10 th Meeting of the Euopean MELCOR Use Goup (EMUG), 25 27 Apil, Zage, Coatia Intoduction

More information

Simulation of the Human Glucose Metabolism Using Fuzzy Arithmetic

Simulation of the Human Glucose Metabolism Using Fuzzy Arithmetic Simulation of the uman Glucose Metabolism Using uy Aithmetic Michael anss live Nehls Institute A of Mechanics Univesity of Stuttgat Pfaffenwalding 9 755 Stuttgat Gemany ManssNehls @mechaunistuttgatde Abstact

More information

A Brain-Machine Interface Enables Bimanual Arm Movements in Monkeys

A Brain-Machine Interface Enables Bimanual Arm Movements in Monkeys BRIN-MHINE INTERFES Bain-Machine Inteface Enables Bimanual m Movements in Monkeys Pete J. Ifft, 1,2 Solaiman Shoku, 2,3 Zheng Li, 2,4 Mikhail. Lebedev, 2,4 Miguel. L. Nicolelis 1,2,4,5,6 * Bain-machine

More information

Interpreting Effect Sizes in Contrast Analysis

Interpreting Effect Sizes in Contrast Analysis UNDERSTANDING STATISTICS, 3(1), 1 5 Copyight 004, Lawence Elbaum Associates, Inc. TEACHING ARTICLES Intepeting Effect Sizes in Contast Analysis R. Michael Fu Depatment of Psychology Appalachian State Univesity

More information

Analytical and Numerical Investigation of FGM Pressure Vessel Reinforced by Laminated Composite Materials

Analytical and Numerical Investigation of FGM Pressure Vessel Reinforced by Laminated Composite Materials Jounal of Solid Mechanics Vol. 6, No. 1 (2014) pp. 43-53 Analytical and Numeical Investigation of FGM Pessue Vessel Reinfoced by Laminated Composite Mateials A.R Ghasemi *, A. Kazemian, M. Moadi Depatment

More information

Shunting Inhibition Controls the Gain Modulation Mediated by Asynchronous Neurotransmitter Release in Early Development

Shunting Inhibition Controls the Gain Modulation Mediated by Asynchronous Neurotransmitter Release in Early Development Shunting Inhibition Contols the Gain Modulation Mediated by Asynchonous Neuotansmitte Release in Ealy Development Vladislav Volman 1,2,3 *, Hebet Levine 1, Teence J. Sejnowski 1,2,3,4 1 Cente fo Theoetical

More information

Why do we remember some things and not others? Consider

Why do we remember some things and not others? Consider Attention pomotes episodic encoding by stabilizing hippocampal epesentations Maiam Aly a,1 and Nicholas B. Tuk-Bowne a,b a Pinceton Neuoscience Institute, Pinceton Univesity, Pinceton, NJ 08544; and b

More information

Coach on Call. Thank you for your interest in When the Scale Does Not Budge. I hope you find this tip sheet helpful.

Coach on Call. Thank you for your interest in When the Scale Does Not Budge. I hope you find this tip sheet helpful. Coach on Call It was geat to talk with you. Thank you fo you inteest in. I hope you find this tip sheet helpful. Please give me a call if you have moe questions about this o othe topics. As you UPMC Health

More information

An Ethological and Emotional Basis for Human-Robot Interaction

An Ethological and Emotional Basis for Human-Robot Interaction An Ethological and Emotional Basis fo Human-Robot Inteaction Ronald C. Akin*, Masahio Fujita**, Tsuyoshi Takagi**, Rika Hasegawa** Abstact This pape pesents the ole of ethological and emotional models

More information

FUNCTIONAL MAGNETIC RESONANCE IMAGING OF LANGUAGE PROCESSING AND ITS PHARMACOLOGICAL MODULATION DISSERTATION

FUNCTIONAL MAGNETIC RESONANCE IMAGING OF LANGUAGE PROCESSING AND ITS PHARMACOLOGICAL MODULATION DISSERTATION FUNCTIONAL MAGNETIC RESONANCE IMAGING OF LANGUAGE ROCESSING AND ITS HARMACOLOGICAL MODULATION DISSERTATION esented in atial Fulfillment of the Requiements fo the Degee Docto of hilosophy in the Gaduate

More information

Numerical Investigations of Open-water Performance of Contra-Rotating Propellers

Numerical Investigations of Open-water Performance of Contra-Rotating Propellers Poceedings of the Twenty-seventh (2017) Intenational Ocean and Pola Engineeing Confeence San Fancisco, CA, USA, June 25-30, 2017 Copyight 2017 by the Intenational Society of Offshoe and Pola Enginees (ISOPE)

More information

F1 generation: The first set of offspring from the original parents being crossed. F2 generation: The second generation of offspring.

F1 generation: The first set of offspring from the original parents being crossed. F2 generation: The second generation of offspring. Padon the Punnett By: Nancy Volk The Punnett Squae This module stems fom the wok of the Austian Monk, Gego Mendel, the fathe of genetics. In the mid-1800s Mendel studied the pattens of inheitance of physical

More information

Structural Safety. Copula-based approaches for evaluating slope reliability under incomplete probability information

Structural Safety. Copula-based approaches for evaluating slope reliability under incomplete probability information Stuctual Safety 52 (2015) 90 99 Contents lists available at ScienceDiect Stuctual Safety jounal homepage: www.elsevie.com/locate/stusafe Copula-based appoaches fo evaluating slope eliability unde incomplete

More information

The Egyptian Journal of Hospital Medicine (January 2018) Vol. 70, Page

The Egyptian Journal of Hospital Medicine (January 2018) Vol. 70, Page The Egyptian Jounal of Hospital Medicine (Januay 2018) Vol. 70, age 109-113 Coelation between Cental Coneal Thickness and Degee of Myopia Mostafa A, Mohamed M, Mohamed M. Al Hussein Univesity Hospital

More information

Test Retest and Between-Site Reliability in a Multicenter fmri Study

Test Retest and Between-Site Reliability in a Multicenter fmri Study Human Bain Mapping 29:958 972 (2008) Test Retest and Between-Site Reliability in a Multicente fmri Study Lee Fiedman, 1 * Hal Sten, 2 Gegoy G. Bown, 3 Daniel H. Mathalon, 4 Jessica Tune, 1 Gay H. Glove,

More information

Realizing Undelayed n-step TD Prediction with Neural Networks

Realizing Undelayed n-step TD Prediction with Neural Networks ealizing Undelayed n-step TD Pediction with eual etwok Jani Zute Faculty of Computing, Univeity of Latvia aina bulvai 9-44, LV-586 iga, Latvia jani.zute@lu.lv Abtact Thee exit vaiou technique to extend

More information

The Probability of Disease. William J. Long. Cambridge, MA hospital admitting door (or doctors oce, or appropriate

The Probability of Disease. William J. Long. Cambridge, MA hospital admitting door (or doctors oce, or appropriate Repinted fom Poceedings of the Fifteenth Annual Symposium on Compute Applications in Medical Cae, pp 619-623, 1991 The Pobability of Disease William J. Long MIT Laboatoy fo Compute Science Cambidge, MA

More information

Coupling of Substructures for Dynamic Analyses

Coupling of Substructures for Dynamic Analyses Coupling of Substuctues fo Dynamic Analyses Roy Caig, Mevyn Bampton To cite this vesion: Roy Caig, Mevyn Bampton. Coupling of Substuctues fo Dynamic Analyses. AAA Jounal, Ameican nstitute of Aeonautics

More information

Word and tree-based similarities for textual entailment

Word and tree-based similarities for textual entailment Wod and tee-based similaities fo textual entailment Fank Schilde R&D Thomson Legal & Regulatoy 610 Oppeman Dive Eagan MN 55123, USA Fank.Schilde@Thomson.com Bidget Thomson McInnes Depatment of Compute

More information

Design of a Fully Differential Current Mode Operational Amplifier with Improved Input-Output Impedances and Its Filter Applications

Design of a Fully Differential Current Mode Operational Amplifier with Improved Input-Output Impedances and Its Filter Applications Desin of a Fully Diffeential uent Mode Opeational Amplifie with Impoved Input-Output Impedances and Its Filte Applications Mustafa Altun a, *, Hakan Kuntmanb a Istanbul Technical Univesity, Faculty of

More information

A Mathematical Model of The Effect of Immuno-Stimulants On The Immune Response To HIV Infection

A Mathematical Model of The Effect of Immuno-Stimulants On The Immune Response To HIV Infection Intenational Jounal of Latest Engineeing Reseach and Applications (IJLERA) ISSN: 455-7137 A Mathematical Model of The Effect of Immuno-Stimulants On The Immune Response To HIV Infection *iwa P. 1, Rotich

More information

Protecting Location Privacy: Optimal Strategy against Localization Attacks

Protecting Location Privacy: Optimal Strategy against Localization Attacks Potecting Location Pivacy: Optimal Stategy against Localization Attacks Reza Shoki, Geoge Theodoakopoulos, Camela Toncoso, Jean-Piee Hubaux, and Jean-Yves Le Boudec LCA, EPFL, Lausanne, Switzeland, ESAT/COSIC,

More information

Influencing Factors on Fertility Intention of Women University Students: Based on the Theory of Planned Behavior

Influencing Factors on Fertility Intention of Women University Students: Based on the Theory of Planned Behavior Vol.32 (Healthcae and Nusing 206), pp.37-42 http://dx.doi.og/0.4257/astl.206. Influencing Factos on Fetility Intention of Women Univesity Students: Based on the Theoy of Planned Behavio Myeong-Jeong Chae,

More information

Collaborative Evaluation of a Fluorometric Method for Measuring Alkaline Phosphatase Activity in Cow s, Sheep s, and Goat s Milk

Collaborative Evaluation of a Fluorometric Method for Measuring Alkaline Phosphatase Activity in Cow s, Sheep s, and Goat s Milk Jounal of Food Potection, Vol., No., 00, Pages Copyight, Intenational Association fo Food Potection Collaboative Evaluation of a Fluoometic Method fo Measuing Alkaline Phosphatase Activity in Cow s, Sheep

More information

METHODS FOR DETERMINING THE TAKE-OFF SPEED OF LAUNCHERS FOR UNMANNED AERIAL VEHICLES

METHODS FOR DETERMINING THE TAKE-OFF SPEED OF LAUNCHERS FOR UNMANNED AERIAL VEHICLES Jounal of KONES Powetain and Tanspot, Vol. 25, No. 1 2018 METHODS FOR DETERMINING THE TAKE-OFF SPEED OF LAUNCHERS FOR UNMANNED AERIAL VEHICLES Gzegoz Jastzębski, Leszek Ułanowicz Ai Foce Institute of Technology

More information

GLOBAL PARTNERSHIP FOR YOUTH EMPLOYMENT. Testing What Works. Evaluating Kenya s Ninaweza Program

GLOBAL PARTNERSHIP FOR YOUTH EMPLOYMENT. Testing What Works. Evaluating Kenya s Ninaweza Program GLOBAL PARTNERSHIP FOR YOUTH EMPLOYMENT Testing What Woks in Youth Employment: Evaluating Kenya s Ninaweza Pogam VOLUME 2: Appendices APRIL 2013 acknowledgements This epot was pepaed fo IYF by Thomaz Alvaes

More information

Analysis on Retrospective Cardiac Disorder Using Statistical Analysis and Data Mining Techniques

Analysis on Retrospective Cardiac Disorder Using Statistical Analysis and Data Mining Techniques Intenational Jounal of Applied Engineeing Reseach ISSN 0973-456 Volume 1, Numbe 17 (017) pp. 6778-6787 Analysis on Retospective Cadiac Disode Using Statistical Analysis and Data Mining Techniques Jyotismita

More information

Visual stimulus locking of EEG is modulated by temporal congruency of auditory stimuli

Visual stimulus locking of EEG is modulated by temporal congruency of auditory stimuli DOI 1.17/s221-9-1867-5 RESEARCH ARTICLE Visual stimulus locking of EEG is modulated by tempoal conguency of auditoy stimuli Sonja Schall Cliodhna Quigley Selim Onat Pete König Received: 16 Octobe 28 /

More information

Multi View Cluster Approach to Explore Multi Objective Attributes based on Similarity Measure for High Dimensional Data

Multi View Cluster Approach to Explore Multi Objective Attributes based on Similarity Measure for High Dimensional Data Multi View Cluste Appoach to Exploe Multi Obective Attibutes based on Similaity Measue fo High Dimensional Data Deena Babu Mandu 1 and Y.K. Sundaa Kishna 2 1 Depatment of Compute Science, Kishna Univesity,

More information

If your child is poorly

If your child is poorly If you child is pooly A quick guide fo paents and caes of young childen What you can do to help you child CCGs woking togethe Aiedale, Whafedale and Caven CCG Badfod City CCG Badfod Disticts CCG This booklet

More information

Technical and Economic Analyses of Poultry Production in the UAE: Utilizing an Evaluation of Poultry Industry Feeds and a Cross-Section Survey

Technical and Economic Analyses of Poultry Production in the UAE: Utilizing an Evaluation of Poultry Industry Feeds and a Cross-Section Survey Available online at www.sciencediect.com ScienceDiect APCBEE Pocedia 8 (2014 ) 266 271 2013 4th Intenational Confeence on Agicultue and Animal Science (CAAS 2013) 2013 3d Intenational Confeence on Asia

More information

Effect of Hydroxymethylated Experiment on Complexing Capacity of Sodium Lignosulfonate Ting Zhou

Effect of Hydroxymethylated Experiment on Complexing Capacity of Sodium Lignosulfonate Ting Zhou 3d Intenational Confeence on Mateial, Mechanical and Manufactuing Engineeing (IC3ME 15) Effect of Hydoxymethylated Expeiment on Complexing Capacity of Sodium Lignosulfonate Ting Zhou School of Nuclea Technology

More information

Predictors of Maternal Identity of Korean Primiparas

Predictors of Maternal Identity of Korean Primiparas J Koean Acad Nus Vol.4 No.6, 733-74 http://dx.doi.og/0.4040/jkan.20.4.6.733 Pedictos of Matenal Identity of Koean Pimipaas Chae, Hyun-Ju Song, Ju-Eun 2 Kim, Sue 3 Pat-time Lectue, College of Nusing, Sungshin

More information

OPRA: Optimal Relay Assignment for Capacity Maximization in Cooperative Networks

OPRA: Optimal Relay Assignment for Capacity Maximization in Cooperative Networks OPRA: Optimal Relay Assignment fo Capacity Maximization in Coopeative Netwoks Dejun Yang, Xi Fang an Guoliang Xue Aizona State Univesity Tempe, AZ 85287 {ejun.yang, xi.fang, xue}@asu.eu Abstact As pomising

More information

Nadine Gaab, 1,2 * John D.E. Gabrieli, 1 and Gary H. Glover 2 INTRODUCTION. Human Brain Mapping 28: (2007) r

Nadine Gaab, 1,2 * John D.E. Gabrieli, 1 and Gary H. Glover 2 INTRODUCTION. Human Brain Mapping 28: (2007) r Human Bain Mapping 28:703 720 (2007) Assessing the Influence of Scanne Backgound Noise on Auditoy Pocessing. I. An fmri Study Compaing Thee Expeimental Designs with Vaying Degees of Scanne Noise Nadine

More information

COHESION OF COMPACTED UNSATURATED SANDY SOILS AND AN EQUATION FOR PREDICTING COHESION WITH RESPECT TO INITIAL DEGREE OF SATURATION

COHESION OF COMPACTED UNSATURATED SANDY SOILS AND AN EQUATION FOR PREDICTING COHESION WITH RESPECT TO INITIAL DEGREE OF SATURATION COHESION OF COMPACTED UNSATURATED SANDY SOILS AND AN EQUATION FOR PREDICTING COHESION WITH RESPECT TO INITIAL DEGREE OF SATURATION Md. Abdul Alim 1 and Makoto Nishigaki 2 1 Assistant Pofesso, Depatment

More information

CH 11: Mendel / The Gene. Concept 11.1: Mendel used the scientific approach to identify two laws of inheritance

CH 11: Mendel / The Gene. Concept 11.1: Mendel used the scientific approach to identify two laws of inheritance CH 11: Mendel / The Gene What genetic pinciples account fo the passing of taits fom paents to offsping? The blending hypothesis is the idea that genetic mateial fom the two paents blends togethe (the way

More information

Heritability of Small-World Networks in the Brain: A Graph Theoretical Analysis of Resting-State EEG Functional Connectivity

Heritability of Small-World Networks in the Brain: A Graph Theoretical Analysis of Resting-State EEG Functional Connectivity Human Bain Mapping 29:1368 1378 (2008) Heitability of Small-Wold Netwoks in the Bain: A Gaph Theoetical Analysis of Resting-State EEG Functional Connectivity Dik J. A. Smit, 1 * Conelis J. Stam, 2 Danielle

More information

Common and Specific Contributions of the Intraparietal Sulci to Numerosity and Length Processing

Common and Specific Contributions of the Intraparietal Sulci to Numerosity and Length Processing Human Bain Mapping 30:2466 2476 (2009) Common and Specific Contibutions of the Intapaietal Sulci to Numeosity and Length Pocessing Valéie Domal and Mauo Pesenti* Unité de Neuosciences Cognitives, Univesité

More information

Abstract. Background and objectives

Abstract. Background and objectives Poceedings - 7th Intenational Wokshop on Biological Effects of EMF - Octobe 01 (Malta) ISBN: 978-99957-0-361-5 MORPHOLOGICAL TRANSFORMATIONS OF HUMAN CANCER CELLS AND MICROTUBULES CAUSED BY FREQUENCY SPECIFIC

More information

Probing feature selectivity of neurons in primary visual cortex with natural stimuli.

Probing feature selectivity of neurons in primary visual cortex with natural stimuli. Pobing featue selectiity of neuons in pimay isual cotex with natual stimuli. T. Shapee -3, H. Sugihaa,3, A.V. Kugansky,3, S. Rebik,3, M. P. Styke -3 and K. D. Mille -3. Sloan-Swatz Cente fo Theoetical

More information

Adaptive and Context-Aware Privacy Preservation Schemes Exploiting User Interactions in Pervasive Environments

Adaptive and Context-Aware Privacy Preservation Schemes Exploiting User Interactions in Pervasive Environments Adaptive and Context-Awae Pivacy Pesevation Schemes Exploiting Use Inteactions in Pevasive Envionments Gautham Pallapa*, Maio Di Fancesco t *, and Sajal K. Das* *Cente fo Reseach in Wieless Mobility and

More information

QUEEN CONCH STOCK RESTORATION

QUEEN CONCH STOCK RESTORATION QUEEN CONCH STOCK RESTORATION Robet Glaze Associate Reseach Scientist Floida Maine Reseach Institute South Floida Regional Laboatoy Maathon, Floida INTRODUCTION Queen conch ae found in pedominantly south

More information

Application Of Fuzzy Logic Controller For Intensive Insulin Therapy In Tpye 1 Diabetic Mellitus Patient

Application Of Fuzzy Logic Controller For Intensive Insulin Therapy In Tpye 1 Diabetic Mellitus Patient COMPUTERS and SMULATON in MOERN SCENCE, Volume Application Of Fuzzy Logic Contolle Fo ntensive nsulin Theapy n Tpye iabetic Mellitus Patient LALEH KARAR *, AL FALLAH, Shahia Ghaibzadeh, Fatollah Moztazadeh

More information

Disrupted Rich Club Network in Behavioral Variant Frontotemporal Dementia and Early-Onset Alzheimer s Disease

Disrupted Rich Club Network in Behavioral Variant Frontotemporal Dementia and Early-Onset Alzheimer s Disease Human Bain Mapping 37:868 883 (2016) Disupted Rich Club Netwok in Behavioal Vaiant Fontotempoal Dementia and Ealy-Onset Alzheime s Disease Madelaine Daianu, 1,2 Adam Mezhe, 1 Maio F. Mendez, 3 Neda Jahanshad,

More information

Relationship of Mammographic Parenchymal Patterns with Breast Cancer Risk Factors and Risk of Breast Cancer in a Prospective Study

Relationship of Mammographic Parenchymal Patterns with Breast Cancer Risk Factors and Risk of Breast Cancer in a Prospective Study Intenational Jounal of Epidemiology Intenational Epidemiological Association 1990 Vol. 19, No. 2 Pinted in Geat Bitain Relationship of Mammogaphic Paenchymal Pattens with Beast Cance Risk Factos and Risk

More information

Activation of the Caudal Anterior Cingulate Cortex Due to Task-Related Interference in an Auditory Stroop Paradigm

Activation of the Caudal Anterior Cingulate Cortex Due to Task-Related Interference in an Auditory Stroop Paradigm Human Bain Mapping 30:3043 3056 (2009) Activation of the Caudal Anteio Cingulate Cotex Due to Task-Related Intefeence in an Auditoy Stoop Paadigm Sven Haupt, 1 Nikolai Axmache, 1,2 * Michael X. Cohen,

More information

lsokinetic Measurements of Trunk Extension and Flexion Performance Collected with the Biodex Clinical Data Station

lsokinetic Measurements of Trunk Extension and Flexion Performance Collected with the Biodex Clinical Data Station lsokinetic Measuements of Tunk Extension and Flexion Pefomance Collected with the Biodex Clinical Data Station MARK D. GRABINER, PhD,' JOHN J. JEZIOROWSKI, MS, PT,' ARUNA D. DIVEKAR, MS, PT' Jounal of

More information

NUMERICAL INVESTIGATION OF BVI MODELING EFFECTS ON HELICOPTER ROTOR FREE WAKE SIMULATIONS

NUMERICAL INVESTIGATION OF BVI MODELING EFFECTS ON HELICOPTER ROTOR FREE WAKE SIMULATIONS 4 TH INTERNATIONAL CONGRESS OF THE AERONAUTICAL SCIENCES NUMERICAL INVESTIGATION OF BVI MODELING EFFECTS ON HELICOPTER ROTOR FREE WAKE SIMULATIONS X. K. Zioutis, A. I. Spyopoulos, D. P. Magais, D. G. Papanikas

More information

sfo ffi FORM TP CARIBBEAN EXAMINATIONS COUNCIL

sfo ffi FORM TP CARIBBEAN EXAMINATIONS COUNCIL t- FORM TP 2017297 sfo TEST CODE O234O2O CARBBEAN EXAMNATONS COUNC CARBBEAN ADVANCED PROFCENCY EXAMNATON@ PURE MATHEMATCS UNT -Pape02 AGEBRA, GEOMETRY AND CACUUS 2 hous 30 minutes MAY/JUNE 2O7 READ THE

More information

Two universal runoff yield models: SCS vs. LCM

Two universal runoff yield models: SCS vs. LCM J. Geog. Sci. 2015, 25(3): 311-318 DOI: 10.1007/s11442-015-1170-2 2015 Science Pess Spinge-Velag Two univesal unoff yield models: SCS vs. LCM LI Jun, * LIU Changming, WANG Zhonggen, LIANG Kang Key Laboatoy

More information

Advanced Placement Psychology Grades 11 or 12

Advanced Placement Psychology Grades 11 or 12 Office of Cuiculum & Instuction Advanced Placement Psychology Gades 11 o 12 ABSTRACT The pupose of AP Psychology is to intoduce students to the systematic and scientific study of the behavio and mental

More information

Re-entrant Projections Modulate Visual Cortex in Affective Perception: Evidence From Granger Causality Analysis

Re-entrant Projections Modulate Visual Cortex in Affective Perception: Evidence From Granger Causality Analysis Human Bain Mapping 30:532 540 (2009) Re-entant Pojections Modulate Visual Cotex in Affective Peception: Evidence Fom Gange Causality Analysis Andeas Keil, 1 * Dean Sabatinelli, 1 Mingzhou Ding, 2 Pete

More information

Journal of Applied Science and Agriculture

Journal of Applied Science and Agriculture Jounal of Applied Science and Agicultue, 9(1) Januay 2014, Pages: 171-176 AENSI Jounals Jounal of Applied Science and Agicultue ISSN 1816-9112 Jounal home page: www.aensiweb.com/jasa/index.html The Relationship

More information

Frequency Domain Connectivity Identification: An Application of Partial Directed Coherence in fmri

Frequency Domain Connectivity Identification: An Application of Partial Directed Coherence in fmri Human Bain Mapping 30:452 461 (2009) Fequency Domain Connectivity Identification: An Application of Patial Diected Coheence in fmri João R. Sato, 1,2 * Daniel Y. Takahashi, 2,3 Silvia M. Acui, 4 Koichi

More information

Altered Sleep Brain Functional Connectivity in Acutely Depressed Patients

Altered Sleep Brain Functional Connectivity in Acutely Depressed Patients Human Bain Mapping 30:2207 2219 (2009) Alteed Sleep Bain Functional Connectivity in Acutely Depessed Patients Samuël J.J. Leistedt, 1,2 * Nathalie Coumans, 1,2 Matine Dumont, 3 Jean-Pol Lanquat, 1 Conelis

More information

Stacy R. Tomas, David Scott and John L. Crompton. Department of Recreation, Park and Tourism Sciences, Texas A&M University, USA

Stacy R. Tomas, David Scott and John L. Crompton. Department of Recreation, Park and Tourism Sciences, Texas A&M University, USA Managing Leisue 7, 239 250 (2002) An investigation of the elationships between quality of sevice pefomance, benefits sought, satisfaction and futue intention to visit among visitos to a zoo Stacy R. Tomas,

More information

Micromethod for the Methyl Red Test

Micromethod for the Methyl Red Test 101 COWN, S. T. (1953). J. ga. M~CTOMO~. 9, 101-109. Micomethod fo the Methyl Red Test BY S. T. COWN National Collection of Type Cultues, Colindule venue, London, N.W. 9 SUMMRY: micomethod fo the methyl

More information

The Engagement of Mid-Ventrolateral Prefrontal Cortex and Posterior Brain Regions in Intentional Cognitive Activity

The Engagement of Mid-Ventrolateral Prefrontal Cortex and Posterior Brain Regions in Intentional Cognitive Activity Human Bain Mapping 29:107 119 (2008) The Engagement of Mid-Ventolateal Pefontal Cotex and Posteio Bain Regions in Intentional Cognitive Activity Anja Dove, 1 Tom Manly, 1 Russell Epstein, 2 and Adian M.

More information

Evaluation of the accuracy of Lachman and Anterior Drawer Tests with KT1000 ın the follow-up of anterior cruciate ligament surgery

Evaluation of the accuracy of Lachman and Anterior Drawer Tests with KT1000 ın the follow-up of anterior cruciate ligament surgery Oiginal Aticle Jounal of Execise Rehabilitation 2016;12(4):363-367 Evaluation of the accuacy of Lachman and Anteio Dawe Tests with KT1000 ın the follow-up of anteio cuciate ligament sugey Beki Eay Kilinc

More information

The Neural Signature of Phosphene Perception

The Neural Signature of Phosphene Perception Human Bain Mapping 31:1408 1417 (2010) The Neual Signatue of Phosphene Peception Paul C.J. Taylo, 1,2 * Vincent Walsh, 2,3 and Matin Eime 1 1 School of Psychology, Bikbeck College, London WC1E 7HX, United

More information

BEFORE PRACTICE BE PROACTIVE

BEFORE PRACTICE BE PROACTIVE EMERGENCY ACTION PLAN BEFORE PRACTICE BE PROACTIVE Equipment Field Conditions Roste Weathe Conditions Fist Aid Kit fo Supplies Athletes (if applicable) that they have thei inhale o EpiPen Emegency Action

More information

Effect of Using and Reusing Melt-Blown, Microwavable Materials to Heat Frozen Fish Filets: Objective and Sensory Perspectives

Effect of Using and Reusing Melt-Blown, Microwavable Materials to Heat Frozen Fish Filets: Objective and Sensory Perspectives Univesity of Tennessee, Knoxville Tace: Tennessee Reseach and Ceative Exchange Mastes Theses Gaduate School 12-1990 Effect of Using and Reusing Melt-Blown, Micowavable Mateials to Heat Fozen Fish Filets:

More information

Equine Biosecurity Principles and Best Practices

Equine Biosecurity Principles and Best Practices Veteinay Medical Association and Fedeation Equine Biosecuity Pinciples and Best Pactices AEF Educational Outeach: Contents Rationale...4 An Industy Reality... 4 Objectives fo AEF Biosecuity Outeach Pogam...5

More information

Causal Beliefs Influence the Perception of Temporal Order

Causal Beliefs Influence the Perception of Temporal Order ausal eliefs Influence the Peception of Tempoal Ode Philip M. Fenbach (philip_fenbach@bown.edu) Peston LinsonGenty (peston_linsongenty@bown.edu) Steven. Sloman (steven_sloman@bown.edu) own Univesity, Depatment

More information

I Can PresCribE A Drug: Mnemonic-based Teaching of Rational Prescribing

I Can PresCribE A Drug: Mnemonic-based Teaching of Rational Prescribing 236 Apil 2007 Family Medicine Fo the Office-based Teache of Family Medicine William Huang, MD Featue Edito Edito s Note: In this month s column, Kal Igla, MD; Natalie Kennie, PhamD; and Jana Bajca, MScPham,

More information

By: Charlene K. Baker, Fran H. Norris, Eric C. Jones and Arthur D. Murphy

By: Charlene K. Baker, Fran H. Norris, Eric C. Jones and Arthur D. Murphy Childhood Tauma and Adulthood Physical Health in Mexico. By: Chalene K. Bake, Fan H. Nois, Eic C. Jones and Athu D. Muphy C.K. Bake, F.H. Nois, E.C. Jones and A.D. Muphy. Childhood Tauma and Adulthood

More information

Your Golden Guide G to Fundraising Success. Together we can make every moment count for sick kids

Your Golden Guide G to Fundraising Success. Together we can make every moment count for sick kids You Golden Guide G to Fundaising Success Togethe we can make evey moment count fo sick kids 1 Thank you fo joiningg this yea's Gold Appeal G Gold Appeal is Sydney Childen s Hospital Foundation s biggest

More information

An Efficient Method for Correlation of Vapor Pressure of Gaseous Compounds Containing C-H-O

An Efficient Method for Correlation of Vapor Pressure of Gaseous Compounds Containing C-H-O Regula Aticle PHYSICAL CHEMISTRY RESEARCH Published by the Ianian Chemical Society www.physchemes.og info@physchemes.og Phys. Chem. Res., Vol. 3, No. 4, 279-291, Decembe 2015. DOI: 10.22036/pc.2015.10448

More information

Dietary Assessment in Epidemiology: Comparison of a Food Frequency and a Diet History Questionnaire with a 7-Day Food Record

Dietary Assessment in Epidemiology: Comparison of a Food Frequency and a Diet History Questionnaire with a 7-Day Food Record Ameican Jounal of Epidemiology Copyight O 996 by The Johns Hopkins Univesity School of Hygiene and Public Health All ights eseved Vol. 4, No. 9 Pinted In U.SJU. Dietay Assessment in Epidemiology: Compaison

More information

Structural Brain Magnetic Resonance Imaging of Pediatric Twins

Structural Brain Magnetic Resonance Imaging of Pediatric Twins Human Bain Mapping 28:474 481 (2007) REVIEW ARTICLE Stuctual Bain Magnetic Resonance Imaging of Pediatic Twins Jay N. Giedd, 1 * James Eic Schmitt, 2,3 and Michael C. Neale 2,3 1 Child Psychiaty Banch,

More information

Neural Correlates of Strategic Memory Retrieval: Differentiating Between Spatial-Associative and Temporal-Associative Strategies

Neural Correlates of Strategic Memory Retrieval: Differentiating Between Spatial-Associative and Temporal-Associative Strategies Human Bain Mapping 29:1068 1079 (2008) Neual Coelates of Stategic Memoy Retieval: Diffeentiating Between Spatial-Associative and Tempoal-Associative Stategies Mischa de Rove, 1 * Kal Magnus Petesson, 1

More information

Could changes in national tuberculosis vaccination policies be ill-informed?

Could changes in national tuberculosis vaccination policies be ill-informed? Math. Model. Nat. Phenom. Vol. 7, No. 3, 2012, pp. 78 98 DOI: 10.1051/mmnp/20127307 Could changes in national tubeculosis vaccination policies be ill-infomed? D. J. Gebey 1, F. A. Milne 2 1 Depatment of

More information

A Novel Current-Mode Min-Max Circuit

A Novel Current-Mode Min-Max Circuit 1 Abstact: A Novel Cuent-Mode Min-Max Cicuit Ai Alikhani and Aash Ahadi This pape pesents a new CMOS cuent ode Min-Max cicuit. The poposed cicuit has lowe nube of tansistos, can detect iniu and axiu of

More information

National Institutes of Health, Bethesda, Maryland 4 Genomic Imaging Unit, Department of Psychiatry, University of Würzburg, Germany

National Institutes of Health, Bethesda, Maryland 4 Genomic Imaging Unit, Department of Psychiatry, University of Würzburg, Germany Human Bain Mapping 30:2252 2266 (2009) Regional Bain Activation Changes and Abnomal Functional Connectivity of the Ventolateal Pefontal Cotex Duing Woking Memoy Pocessing in Adults With Attention-Deficit/

More information

PEKKA KANNUS, MD* Downloaded from at on April 8, For personal use only. No other uses without permission.

PEKKA KANNUS, MD* Downloaded from  at on April 8, For personal use only. No other uses without permission. 0196-6011/88/1003-0097$02.00/0 THE OURNAL OF ORTHOPAEDIC AND SPORTS PHYSICAL THERAPY Copyight 0 1988 by The Othopaedic and Spots Physical Theapy Sections of the Ameican Physical Theapy Association Peak

More information

CHAPTER 1 BACKGROUND ON THE EPIDEMIOLOGY AND MODELING OF BIV/AIDS

CHAPTER 1 BACKGROUND ON THE EPIDEMIOLOGY AND MODELING OF BIV/AIDS CHAPTER 1 BACKGROUD O THE EPDEMOLOGY AD MODELG OF BV/ADS Befoe modeling any disease it is cucial to undestand the epidemiological featues of the disease. The fist fou sections of this chapte pesent epidemiological

More information

The Effects of Rear-Wheel Camber on Maximal Effort Mobility Performance in Wheelchair Athletes

The Effects of Rear-Wheel Camber on Maximal Effort Mobility Performance in Wheelchair Athletes Taining & Testing 199 The Effects of Rea-Wheel Cambe on Maximal Effot Mobility Pefomance in Wheelchai Athletes Authos B. Mason 1, L. van de Woude 2, K. Tolfey 1, V. Goosey-Tolfey 1 Affiliations 1 Loughboough

More information

Detecting Marker-Disease Association by Testing for Hardy-Weinberg Disequilibrium at a Marker Locus

Detecting Marker-Disease Association by Testing for Hardy-Weinberg Disequilibrium at a Marker Locus Am. J. Hum. Genet. 63:1531 1540, 1999 Detecting Make-Disease Association by Testing o Hady-Weinbeg Disequilibium at a Make Locus Dahlia M. Nielsen, 1, M. G. Ehm, 1 and B. S. Wei 1 Bioinomatics Depatment,

More information

Lifespan Psychology. Chapter 3 Biology of Development. Outline. Infertility. Infertility/Reproductive technologies. Heredity/DNA/Genes

Lifespan Psychology. Chapter 3 Biology of Development. Outline. Infertility. Infertility/Reproductive technologies. Heredity/DNA/Genes Lifespan Psychology Chapte 3 Biology of Development 1 Outline Infetility/Repoductive technologies Pobabilities Fetility ypoblems and teatments Legal and ethical issues Adoption Heedity/DNA/Genes 2 Infetility

More information

An Efficient RLS Algorithm For Output-Error Adaptive IIR Filtering And Its Application To Acoustic Echo Cancellation

An Efficient RLS Algorithm For Output-Error Adaptive IIR Filtering And Its Application To Acoustic Echo Cancellation Poceedigs of the 27 IEEE Symposium o Computatioal Itelligece i Image ad Sigal Pocessig (CIISP 27) A Efficiet RLS Algoithm Fo Output-Eo Adaptive IIR Filteig Ad Its Applicatio o Acoustic Echo Cacellatio

More information

The Regional Economics Applications Laboratory (REAL) of the University of Illinois focuses on the development and use of analytical models for urban

The Regional Economics Applications Laboratory (REAL) of the University of Illinois focuses on the development and use of analytical models for urban The Regional Economics Applications Laboatoy (REAL) of the Univesity of Illinois focuses on the development and use of analytical models fo uban and egional economic development. The pupose of the Discussion

More information

Real-Time fmri Using Brain-State Classification

Real-Time fmri Using Brain-State Classification Human Bain Mapping 28:1033 1044 (2007) Real-Time fmri Using Bain-State Classification Stephen M. LaConte,* Scott J. Peltie, and Xiaoping P. Hu Depatment of Biomedical Engineeing, Geogia Institute of Technology,

More information

CORE CONSOLIDATION OF HERITAGE STRUCTURE MASONRY WALLS & FOUNDATIONS USING GROUTING TECHNIQUES - CANADIAN CASE STUDIES. Paul A.

CORE CONSOLIDATION OF HERITAGE STRUCTURE MASONRY WALLS & FOUNDATIONS USING GROUTING TECHNIQUES - CANADIAN CASE STUDIES. Paul A. CORE CONSOLIDATION OF HERITAGE STRUCTURE MASONRY WALLS & FOUNDATIONS USING GROUTING TECHNIQUES - CANADIAN CASE STUDIES Paul A. Jeffs ABSTRACT Damage to masony walls due to deteioation of thei ubble coe

More information

Imperfect Vaccine Aggravates the Long-Standing Dilemma of Voluntary Vaccination

Imperfect Vaccine Aggravates the Long-Standing Dilemma of Voluntary Vaccination Impefect Vaccine Aggavates the Long-Standing Dilemma of Voluntay Vaccination Bin Wu 1 *, Feng Fu 2 *, Long Wang 1 1 State Key Laboatoy fo Tubulence and Complex Systems, Cente fo Systems and Contol, College

More information

The Impact of College Experience on Future Job Seekers Diversity Readiness

The Impact of College Experience on Future Job Seekers Diversity Readiness Intenational Jounal of Humanities and Social Science Vol. 3 No. 3; Febuay 2013 The Impact of College Expeience on Futue Job Seekes Divesity Readiness FELICE A. WILLIAS Louisiana State Univesity - Shevepot

More information