EE Digital Communications

Size: px
Start display at page:

Download "EE Digital Communications"

Transcription

1 Principles of Communications Weiyao Lin Shanghai Jiao Tong University Chapter 11: Channel Coding Textbook: Chapter 13.1 ~ /2010 Meixia SJTU 1

2 Homework 5 Ch 12: 12.2, 12.9, 12.15, Ch 13: 13.9, 13.11, 13.13(1)(2)(3), 13.15(1)(2)(3)(4), Homework questions available on ftp://public.sjtu.edu.cn Username: zhangyihao password: public Filename: chapter12_problem.pdf Due: Wednesday (Dec. 26) In class Reminder: Project due next Friday (Dec. 21) by the TA 2009/2010 Meixia SJTU

3 Reminder (1) My PRP project: Title: 多媒体搜索结果可视化与拼贴 o Currently look for students o Plan to look for about 3 students o Each student will do his own work Only one student will do this prp topic Other 1-2 students will do other topics on video and image processing o Basic target: writing papers, creating useful systems, and hopefully some students can continue to pursue master in my group Publish at least one paper on major conferences Try to publish 2 papers before you finish your undergraduate study 2009/2010 Meixia SJTU

4 Reminders (2) Requirements and preference: Good at English reading and understanding (good to read papers) Self-motivated and quick working Strong ability on programming o C (opencv), C++, Matlab o Optional: MFC, JAVA Good at Mathematics 2009/2010 Meixia SJTU

5 Reminders (6) If interested, send your resume to or 简历里可以列出你们比较得意的经历和能力, 此外, 请在简历里包含以下内容 : (1) 对将来本科毕业的打算, 是准备直接出国, 工作, 还是准备继续在交大 ( 特别能在我这里 ) 继续读研究生 (2) 专业 ( 信工, 电科, 计算机, 联读班, 试点班, 联合学院, 等等 ) (3) 平均 GPA, (4) 上过的主要专业课和计算机编程的课的名字和分数 ( 如果上我的通信原理课, 也把通信原理期中考试的分数列一下 ). (5) 熟悉的编程语言和做过的一些主要的 projects. Also welcome to apply my Summer project ( 暑期实习 ) Can be paper writing or doing some projects 2009/2010 Meixia SJTU

6 Topics to be Covered Source A/D converter Source encoder Channel encoder Modulator Absent if source is digital Noise Channel User D/A converter Source decoder Channel decoder Detector Linear block code Convolutional code 2009/2010 Meixia SJTU 6

7 Information Theory and Coding In 1948, Claude Shannon showed that controlled redundancy in digital communications allows transmission at arbitrarily low bit error rate (BER) Error control coding (ECC) uses this controlled redundancy to detect and correct errors How to use error control coding depends on the system requirements (e.g. data, voice, video) and the nature of the channel (e..g wireless, mobile, high interference) The key in error control coding research is to Find a way to add redundancy to the channel so that the receiver can fully utilize that redundancy to detect and correct the errors and to improve the coding gain the effective lowering of the power required 2009/2010 Meixia SJTU 7

8 Example We want to transmit data over a telephone link using a modem under the following conditions Link bandwidth = 3kHz The modem can operate up to the speed of 3600 bits/sec at an error probability Target: transmit the data at rate of 1200 bits/sec at maximum output SNR = 13 db with a probability of error 2009/2010 Meixia SJTU 8

9 Solution: Shannon Theorem For the above communication link, the channel capacity is Since B = 3000 and S/N = 20 (13 db = 10log 10 20) Thus, by Shannon s theorem, we can transmit the data with an arbitrarily small error probability Note that without coding P e = For the given modem, criterion P e = is not met. 2009/2010 Meixia SJTU 9

10 Solution: A Simple Code Design Design a simple code which yields an overall probability of error of 10-4 Possible solution: When b k = 0 or 1, the codeword 000 or 111 is transmitted Based on the received codewords, the decoder attempts to extract the transmitted bits using majority-logic decoding scheme 2009/2010 Meixia SJTU 10

11 Tx bits b k Codewords Rx bits Clearly, the transmitted bits will be recovered correctly as long as no more than one of the bits in the codeword is affected by noise 2009/2010 Meixia SJTU 11

12 With this simple error control coding, the probability of error is 2009/2010 Meixia SJTU 12

13 Channel Coding Coding techniques are classified as either block codes or convolutional codes, depending on the presence or absence of memory A block code has no memory, since it collects and therefore isolate k-bit in a buffer prior to processing The encoder adds n-k redundant bits to the buffered bits. The added bits are algebraically related to the buffered bits The encoded block contains n bits, known as codeword Each output codeword of an (n, k) block code depends only on the current buffer The ratio k/n is known as the code rate. The difference 1-k/n is known as redundancy 2009/2010 Meixia SJTU 13

14 Channel Coding (cont d) A convolutional coder may process one or more buffers during an encoding cycle If the number of sample points (buffers) > 1, a small FIFO is needed to hold them The encoder acts on the serial bit stream as it enters the transmitter Each bit in the output stream is not only dependent on the current bit, but also on those processed previously. This implies a form of memory Performance of a convolutional coder is less sensitive to SNR variations than that of block codes 2009/2010 Meixia SJTU 14

15 11.1 Block Codes An (n,k) block code is a collection of M = 2 k codewords of length n. Each codeword has a block of k information bits followed by a group of r = n-k check bits that are derived from the k information bits in the block preceding the check bits The code is said to be linear if any linear combination of 2 codewords is also a codeword i.e. if c i and c j are codewords, then c i + c j is also a codeword (where the addition is always module-2) 2009/2010 Meixia SJTU 15

16 Code rate (rate efficiency) = Matrix description Each block code can be generated using a Generator Matrix G (dim: ) Given G, then = codeword = message bits codeword message 2009/2010 Meixia SJTU 16

17 I k = identity matrix of order k P = matrix of order, which is selected so that the code will have certain desirable properties 2009/2010 Meixia SJTU 17

18 Systematic Codes The form of G implies that the 1 st k components of any codeword are precisely the information symbols This form of linear encoding is called systematic encoding Systematic-form codes allow easy implementation and quick look-up features for decoding For linear codes, any code is equivalent to a code in systematic form (given the same performance). Thus we can restrict our study to only systematic codes 2009/2010 Meixia SJTU 18

19 Example: Hamming Code A family of (n,k) linear block codes that have the following parameters: Codeword length # of message bits # of parity check bits Capable of providing single-error correction capability 2009/2010 Meixia SJTU 19

20 (7, 4) Hamming Code Consider a (7,4) Hamming code with generator matrix Find all codewords 2009/2010 Meixia SJTU 20

21 Solution Let This example indicates that in general, the encoder must store G (or at least P) and then performs binary arithmetic operations to generate codewords Clearly, the complexity of encoder increases as n increases 2009/2010 Meixia SJTU 21

22 n = 7, k = 4 List of all Codewords message blocks Message codeword /2010 Meixia SJTU 22

23 Parity Check Matrix For each G, it is possible to find a corresponding parity check matrix H H is important since it can be used to verify if a codeword C is generated G Let C be a codeword generated by 2009/2010 Meixia SJTU 23

24 Error Syndrome Received codeword where e = Error vector or Error Pattern it is 1 in every position where data word is in error Example 2009/2010 Meixia SJTU 24

25 Error Syndrome (cont d) = Error Syndrome But 1. If s=0 r = c and m is the 1 st k bits of r 2. If s 0, and s is the j th row of H T 1 error in jth position of r 2009/2010 Meixia SJTU 25

26 Consider the (7,4) Hamming code example So if But if Note that s is the last row of H T Also note error took place in the last bit => Syndrome indicates position of error = Error syndrome s 2009/2010 Meixia SJTU 26

27 Cyclic Codes A code is cyclic if (7,4) Hamming code is cyclic message codeword /2010 Meixia SJTU 27

28 Important Parameters The Hamming Distance between codewords c i and c j is: d(c i, c j ) = # of components at which the 2 codewords differ The Hamming weight of a codeword c i is w(c i ) = # of non-zero components in the codeword The minimum Distance of a code is the minimum Hamming distance between any 2 codewords d min = min d(c i, c j ) for all i j 2009/2010 Meixia SJTU 28

29 The minimum Weight of a code is the minimum of the weights of the codewords except the all-zero codeword w min = min w(c i ) for all c i 0 Theorem: In any linear code, Example: Find d min for (7,4) Hamming code 2009/2010 Meixia SJTU 29

30 Major Classes of Block Codes Repetition Code Hamming Code Golay Code BCH Code Reed-Solomon Codes Walsh Codes BCH and RS codes are the most frequently used 2009/2010 Meixia SJTU 30

31 Soft-Decision and Hard-Decision Decoding Soft-decision decoder operates directly on the decision statistics Hard-decision decoder makes hard decision (0 or 1) on individual bits Here we only focus on hard-decision decoder 2009/2010 Meixia SJTU 31

32 Hard-Decision Decoding Minimum Hamming Distance Decoding Given the received codeword r, choose c which is closest to r in terms of Hamming distance To do so, one can do an exhaustive search too much if n is large. Syndrome Decoding Syndrome testing: with This implies that the corrupted codeword r and the error pattern have the same syndrome A simplified decoding procedure based on the above observation can be used 2009/2010 Meixia SJTU 32

33 Standard Array Let the codewords be denoted as A standard array is constructed as {,,, } c1 c2 K c M Coset leader 2 k Syndrome s 2 n k c c c 1 2 e e c e c e e c e c M M M e e c e c n k n k n k 2 1 M M M M coset 0 s = eh 1 s = e2h M n k T T s = e H 2 1 T Error patterns 2009/2010 Meixia SJTU 33

34 Hard-Decoding Procedure Find the syndrome by r using s=rh T Find the coset corresponding to s by using the standard array Find the cost leader and decode as 2009/2010 Meixia SJTU 34

35 Error Correction Capability A linear block code with a minimum distance d min can Detect up to Correct up to errors in each codeword errors in each codeword t is known as the error correction capability of the code 2009/2010 Meixia SJTU 35

36 Probability of Codeword Error for Hard- Decision Decoding Consider a linear block code (n, k) with an error correcting capability t. The decoder can correct all combination of errors up to and including t errors. Assume that the error probability of each individual coded bit is p and that bit errors occur independently since the channel is memoryless If we send n-bit block, the probability of receiving a specific pattern of m errors and (n-m) correct bits is 2009/2010 Meixia SJTU 36

37 Total number of distinct pattern of n bits with m errors and (n-m) correct bits is So the total probability of receiving a pattern with m errors is Therefore, the codeword error probability is upper-bounded by with equality for perfect codes 2009/2010 Meixia SJTU 37

38 Error Detection vs. Error Correction To detect e bit errors, we have To correct t bit errors, we have d min e+ 1 dmin 2t /2010 Meixia SJTU 38

39 11.2 Convolutional Codes A convolutional code has memory It is described by 3 integers: n, k, and K Maps k bits into n bits using previous (K-1) k bits The n-tuple emitted by the encoder is not only a function of the current input k-tuple, but is also a function of the previous K-1 input k-tuples k/n = Code Rate (information bits/coded bit) K is the constraint length and is a measure of the code memory n does not define a block or codeword length 2009/2010 Meixia SJTU 39

40 Convolutional Encoding A rate k/n convolutional encoder with constraint length K consists of kk-stage shift register and n mod-2 adders At each unit of time: k bits are shifted into the 1 st k stages of the register All bits in the register are shifted k stages to the right The output of the n adders are sequentially sampled to give the coded bits There are n coded bits for each input group of k information or message bits. Hence R = k/n information bits/coded bit is the code rate (k<n) 2009/2010 Meixia SJTU 40

41 Input sequence (shift in k at a time) Encoder Structure (rate k/n, constraint length K) kk kk-stage shift register n n modulo-2 adders Codeword sequence with Typically binary codes with k=1 are used. Hence, we will mainly consider rate 1/n codes = i-th binary code symbol of the branch word U j 2009/2010 Meixia SJTU 41

42 Conv. Codes Representation To describe a convolutional code, we must describe the encoding function that characterizes the relationship between the information sequence m and the output coded sequence U There are 4 popular methods for representation Connection pictorial and connection polynomials (usually for encoder) State diagram Tree diagram Trellis diagram Usually for decoder 2009/2010 Meixia SJTU 42

43 Connection Representation Specify n connection vectors, each of the n mod-2 adders for Each vector has kk dimension and describes the connection of the shift register to the mod-2 adders A 1 in the i th position of the connection vector implies shift register is connected A 0 implies no connection exists 2009/2010 Meixia SJTU 43

44 Example: K = 3, Rate 1/ /2010 Meixia SJTU 44

45 State Diagram Representation The contents of the rightmost K-1 stages (or the previous K-1 bits) are considered the current state => states Knowledge of the current state and the next input is necessary and sufficient to determine the next output and next state For each state, there are only 2 transitions (to the next state) corresponding to the 2 possible input bits The transitions are represented by paths on which we write the output word associated with the state transition A solid line path corresponds to an input bit 0 A dashed line path corresponds to an input bit /2010 Meixia SJTU 45

46 Example: K =3, Rate = 1/2 Input/output 0/00 1/11 a=00 0/11 0/10 b=10 1/00 c=01 1/01 d=11 0/01 1/10 Current State Input Next State Output /2010 Meixia SJTU 46

47 Example Assume that m=11011 is the input followed by K-1 = 2 zeros to flush the register. Also assume that the initial register contents are all zero. Find the output sequence U. Branch word at Output sequence: U = /2010 Meixia SJTU 47

48 Trellis Diagram The trellis diagram is similar to the state diagram, except that it adds the dimension of time The code is represented by a trellis where each trellis branch describes an output word 2009/2010 Meixia SJTU 48

49 Trellis Diagram state a= b= c= d= Trellis structure repeats itself after depth K = /2010 Meixia SJTU 49

50 Every input sequence (m 1,m 2, ) corresponds to a path in the trellis a state transition sequence (s 0,s 1, ), (assume s 0 =0 is fixed), an output sequence ((u 1,u 2 ),(u 3,u 4 ), ) Example: Let s 0 =00, then b 1 b 2 b 3 =000 gives output and states aaaa b 1 b 2 b 3 =100 gives output and states abca b 1 b 2 b 3 a= b=10 c= d= /2010 Meixia SJTU 50

51 We have introduced conv. code Constraint length K and rate R = 1/n Update Polynomials representation State diagram representation Trellis diagram representation We will talk about decoding of convolutional code Maximum Likelihood Decoding Viterbi Algorithm Transfer Function 2009/2010 Meixia SJTU 51

52 Maximum Likelihood Decoding Transmit a coded sequence (correspond to message sequence m) using a digital modulation scheme (e.g. BPSK or QPSK) Received sequence Maximum likelihood decoder Find the sequence such that Will minimize the probability of error if b is equally likely 2009/2010 Meixia SJTU 52

53 Maximum Likelihood Metric Assume a memoryless channel, i.e. noise components are independent. Then, for a rate 1/n code i-th branch of Z Then the problem to find a path (each path defines a codeword) through the trellis such that by taking log Log-likelihood path metric i-th branch metric Log-likelihood of 2009/2010 Meixia SJTU 53

54 Decoding Algorithm: Log-Likelihood For AWGN channel (soft-decision) and P( ) is Gaussian with mean and variance Hence Note that the objective is to compare which Σ i ln(p(z u)) for different u is larger, hence, constant and scaling does not affect the results Then, we let the log-likelihood be and Thus, soft decision ML decoder is to choose the path whose corresponding sequence is at the minimum Euclidean distance to the received sequence 2009/2010 Meixia SJTU 54

55 For binary symmetric channel (hard decision) u 0 1-p 0 p p 1 1-p 1 z p( z u) p = 1 p if if z z = u u LL( z ji u ji ) = ln p( z ji u ji ) ln p = ln(1 p) if if z z ji ji u = u ji i ji (as since p<0.5) Thus Hamming distance between Z and U( m), i.e. they differ in d m positions Hard-Decision ML Decoder = Minimum Hamming Distance Decoder 2009/2010 Meixia SJTU 55

56 Maximum Likelihood Decoding Procedure Compute, for each branch, the branch metric using the output bits associated with that branch and the received symbols Compute, for each valid path through the trellis (a valid codeword sequence ), the sum of the branch metrics along that path The path with the maximum path metric is the decoded path To compare all possible valid paths we need to do exhaustive search or brute-force, not practical as the # of paths grow exponentially as the path length increases The optimum algorithm for solving this problem is the Viterbi decoding algorithm or Viterbi decoder 2009/2010 Meixia SJTU 56

57 Viterbi Decoding (R=1/2, K=3) Input data sequence m: Coded sequence U: Received sequence Z: Branch metric a=00 b=10 c=01 d= /2010 Meixia SJTU 57

58 Basic idea: Viterbi Decoder If any 2 paths in the trellis merge to a single state, one of them can always be eliminated in the search Let cumulative path metric of a given path at t i = sum of the branch metrics along that path up to time t i Consider t 5 The upper path metric is 4, the lower math metric is 1 The upper path metric CANNOT be part of the optimum path since the lower path has a lower metric This is because future output branches depend only on the current state and not the previous state 2009/2010 Meixia SJTU 58

59 Path Metrics for 2 Merging Paths Path metric = 4 a=00 b=10 c=01 d= Path metric = /2010 Meixia SJTU 59

60 Viterbi Decoding At time t i, there are states in the trellis Each state can be entered by means of 2 states Viterbi Decoding consists of computing the metrics for the 2 paths entering each state and eliminating one of them This is done for each of the nodes at time t i The decoder then moves to at time t i+1 and repeats the process 2009/2010 Meixia SJTU 60

61 Example 2009/2010 Meixia SJTU 61

62 2009/2010 Meixia SJTU 62

63 Distance Properties d free = Minimum Free distance = Minimum distance of any pair of arbitrarily long paths that diverge and remerge A code can correct any t channel errors where (this is an approximation) a=00 b=10 c=01 d= /2010 Meixia SJTU

64 Transfer Function The distance properties and the error rate performance of a convolutional code can be obtained from its transfer function Since a convolutional code is linear, the set of Hamming distances of the code sequences generated up to some stages in the trellis, from the all-zero code sequence, is the same as the set of distances of the code sequences with respect to any other code sequence Thus, we assume that the all-zero path is the input to the encoder 2009/2010 Meixia SJTU 64

65 State Diagram Labeled according to distance from all-zero path a=00 b=10 c=01 e=00 input 01 d=11 10 output 10 DNL D m denote m non-zero output bits N if the input bit is non-zero L denote a branch in the path 2009/2010 Meixia SJTU 65

66 The transfer function T(D,N,L), also called the weight enumerating function of the code is By solving the state equations we get The transfer function indicates that: There is one path at distance 5 and length 3, which differs in 1 input bit from the correct all-zeros path There are 2 paths at distance 6, one of which is of length 4, the other length 5, and both differ in 2 input bits from all-zero path 2009/2010 Meixia SJTU 66

67 Known Good Convolutional Codes Good convolutional codes can only be found in general by computer search There are listed in tables and classified by their constraint length, code rate, and their generator polynomials or vectors (typically using octal notation). The error-correction capability of a convolutional code increases as n increases or as the code rate decreases. Thus, the channel bandwidth and decoder complexity increases 2009/2010 Meixia SJTU 67

68 Good Codes with Rate 1/2 Constraint Length Generator Polynomials d free 3 (5,7) 5 4 (15,17) 6 5 (23,35) 7 6 (53,75) 8 7 (133,171) 10 8 (247,371) 10 9 (561,753) (1167,1545) /2010 Meixia SJTU 68

69 Good Codes with Rate 1/3 Constraint Length Generator Polynomials d free 3 (5,7,7) 8 4 (13,15,17) 10 5 (25,33,37) 12 6 (47,53,75) 13 7 (133,145,175) 15 8 (225,331,367) 16 9 (557,663,711) (1117,1365,1633) /2010 Meixia SJTU 69

70 Basic Channel Coding for Wideband CDMA BER = 10-3 Block Codes Convolutional Codes Inner coding (conv.) Inner interleaving BER = 10-6 Outer coding (RS) Outer interleaving Inner coding (conv.) Inner interleaving Service-specific coding Convolutional code is rate 1/3 and rate ½, all with constraint length /2010 Meixia SJTU 70

71 Input bits Channel Coding for Wireless LAN (IEEE802.11a) Conv. Encoder r=1/2, K=7 Puncturing Baseband Modulator OFDM TX signals Source: Wireless Networks: The Definitive Guide / by M. Gast / O Reilly 2009/2010 Meixia SJTU 71

72 Other Advanced Channel Coding Turbo codes: Berrou et al 1993 Low-density parity check codes: Robert Gallager 1960 Trellis-coded modulation: Ungerboeck 1982 Space-time coding: Tarokh et al 1998 A family of codes that introduce correlation in both time and space (transmit antenna) dimensions It is a combined result of channel coding, modulation and transmit antenna diversity. 2009/2010 Meixia SJTU 72

Microsoft PowerPoint - STU_EC_Ch08.ppt

Microsoft PowerPoint - STU_EC_Ch08.ppt 樹德科技大學資訊工程系 Chapter 8: Counters Shi-Huang Chen Fall 2010 1 Outline Asynchronous Counter Operation Synchronous Counter Operation Up/Down Synchronous Counters Design of Synchronous Counters Cascaded Counters

More information

ENGG1410-F Tutorial 6

ENGG1410-F Tutorial 6 Jianwen Zhao Department of Computer Science and Engineering The Chinese University of Hong Kong 1/16 Problem 1. Matrix Diagonalization Diagonalize the following matrix: A = [ ] 1 2 4 3 2/16 Solution The

More information

BC04 Module_antenna__ doc

BC04 Module_antenna__ doc http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 1 of 10 http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 2 of 10 http://www.infobluetooth.com TEL:+86-23-68798999

More information

Microsoft PowerPoint - STU_EC_Ch02.ppt

Microsoft PowerPoint - STU_EC_Ch02.ppt 樹德科技大學資訊工程系 Chapter 2: Number Systems Operations and Codes Shi-Huang Chen Sept. 2010 1 Chapter Outline 2.1 Decimal Numbers 2.2 Binary Numbers 2.3 Decimal-to-Binary Conversion 2.4 Binary Arithmetic 2.5

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

untitled

untitled Co-integration and VECM Yi-Nung Yang CYCU, Taiwan May, 2012 不 列 1 Learning objectives Integrated variables Co-integration Vector Error correction model (VECM) Engle-Granger 2-step co-integration test Johansen

More information

(baking powder) 1 ( ) ( ) 1 10g g (two level design, D-optimal) 32 1/2 fraction Two Level Fractional Factorial Design D-Optimal D

(baking powder) 1 ( ) ( ) 1 10g g (two level design, D-optimal) 32 1/2 fraction Two Level Fractional Factorial Design D-Optimal D ( ) 4 1 1 1 145 1 110 1 (baking powder) 1 ( ) ( ) 1 10g 1 1 2.5g 1 1 1 1 60 10 (two level design, D-optimal) 32 1/2 fraction Two Level Fractional Factorial Design D-Optimal Design 1. 60 120 2. 3. 40 10

More information

<4D6963726F736F667420506F776572506F696E74202D20B5DAD2BBD5C228B4F2D3A1B0E6292E707074205BBCE6C8DDC4A3CABD5D>

<4D6963726F736F667420506F776572506F696E74202D20B5DAD2BBD5C228B4F2D3A1B0E6292E707074205BBCE6C8DDC4A3CABD5D> Homeworks ( 第 三 版 ):.4 (,, 3).5 (, 3).6. (, 3, 5). (, 4).4.6.7 (,3).9 (, 3, 5) Chapter. Number systems and codes 第 一 章. 数 制 与 编 码 . Overview 概 述 Information is of digital forms in a digital system, and

More information

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish 我 难 度 : 高 级 对 们 现 不 在 知 仍 道 有 听 影 过 响 多 少 那 次 么 : 研 英 究 过 文 论 去 写 文 时 作 的 表 技 引 示 巧 言 事 : 部 情 引 分 发 言 该 生 使 在 中 用 过 去, 而 现 在 完 成 时 仅 表 示 事 情 发 生 在 过 去, 并 的 哪 现 种 在 时 完 态 成 呢 时? 和 难 过 道 去 不 时 相 关? 是 所 有

More information

PowerPoint Presentation

PowerPoint Presentation Decision analysis 量化決策分析方法專論 2011/5/26 1 Problem formulation- states of nature In the decision analysis, decision alternatives are referred to as chance events. The possible outcomes for a chance event

More information

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl SKLOIS (Pseudo) Preimage Attack on Reduced-Round Grøstl Hash Function and Others Shuang Wu, Dengguo Feng, Wenling Wu, Jian Guo, Le Dong, Jian Zou March 20, 2012 Institute. of Software, Chinese Academy

More information

Microsoft PowerPoint - Aqua-Sim.pptx

Microsoft PowerPoint - Aqua-Sim.pptx Peng Xie, Zhong Zhou, Zheng Peng, Hai Yan, Tiansi Hu, Jun-Hong Cui, Zhijie Shi, Yunsi Fei, Shengli Zhou Underwater Sensor Network Lab 1 Outline Motivations System Overview Aqua-Sim Components Experimental

More information

Microsoft PowerPoint - TTCN-Introduction-v5.ppt

Microsoft PowerPoint - TTCN-Introduction-v5.ppt Conformance Testing and TTCN 工研院無線通訊技術部林牧台 / Morton Lin 03-5912360 mtlin@itri.org.tw 1 Outline Introduction and Terminology Conformance Testing Process 3GPP conformance testing and test cases A real world

More information

4. 每 组 学 生 将 写 有 习 语 和 含 义 的 两 组 卡 片 分 别 洗 牌, 将 顺 序 打 乱, 然 后 将 两 组 卡 片 反 面 朝 上 置 于 课 桌 上 5. 学 生 依 次 从 两 组 卡 片 中 各 抽 取 一 张, 展 示 给 小 组 成 员, 并 大 声 朗 读 卡

4. 每 组 学 生 将 写 有 习 语 和 含 义 的 两 组 卡 片 分 别 洗 牌, 将 顺 序 打 乱, 然 后 将 两 组 卡 片 反 面 朝 上 置 于 课 桌 上 5. 学 生 依 次 从 两 组 卡 片 中 各 抽 取 一 张, 展 示 给 小 组 成 员, 并 大 声 朗 读 卡 Tips of the Week 课 堂 上 的 英 语 习 语 教 学 ( 二 ) 2015-04-19 吴 倩 MarriottCHEI 大 家 好! 欢 迎 来 到 Tips of the Week! 这 周 我 想 和 老 师 们 分 享 另 外 两 个 课 堂 上 可 以 开 展 的 英 语 习 语 教 学 活 动 其 中 一 个 活 动 是 一 个 充 满 趣 味 的 游 戏, 另 外

More information

untitled

untitled LBS Research and Application of Location Information Management Technology in LBS TP319 10290 UDC LBS Research and Application of Location Information Management Technology in LBS , LBS PDA LBS

More information

穨control.PDF

穨control.PDF TCP congestion control yhmiu Outline Congestion control algorithms Purpose of RFC2581 Purpose of RFC2582 TCP SS-DR 1998 TCP Extensions RFC1072 1988 SACK RFC2018 1996 FACK 1996 Rate-Halving 1997 OldTahoe

More information

Outline Speech Signals Processing Dual-Tone Multifrequency Signal Detection 云南大学滇池学院课程 : 数字信号处理 Applications of Digital Signal Processing 2

Outline Speech Signals Processing Dual-Tone Multifrequency Signal Detection 云南大学滇池学院课程 : 数字信号处理 Applications of Digital Signal Processing 2 CHAPTER 10 Applications of Digital Signal Processing Wang Weilian wlwang@ynu.edu.cn School of Information Science and Technology Yunnan University Outline Speech Signals Processing Dual-Tone Multifrequency

More information

高中英文科教師甄試心得

高中英文科教師甄試心得 高 中 英 文 科 教 師 甄 試 心 得 英 語 學 系 碩 士 班 林 俊 呈 高 雄 市 立 高 雄 高 級 中 學 今 年 第 一 次 參 加 教 師 甄 試, 能 夠 在 尚 未 服 兵 役 前 便 考 上 高 雄 市 立 高 雄 高 級 中 學 專 任 教 師, 自 己 覺 得 很 意 外, 也 很 幸 運 考 上 後 不 久 在 與 雄 中 校 長 的 會 談 中, 校 長 的 一 句

More information

National Taiwan Ocean University Error Correcting Codes Spring 2003 Lecture 6: CRC Codes and BCH Codes National Taiwan Ocean University Announcement C

National Taiwan Ocean University Error Correcting Codes Spring 2003 Lecture 6: CRC Codes and BCH Codes National Taiwan Ocean University Announcement C Error Correcting Codes Spring 2003 Lecture 6: CRC Codes and BCH Codes Announcement Course webpage: http://www.gct.ntou.edu.tw/dcstl/web/ecc.htm Textbook webpage: http://www.eccpage.com Reading Assignment:

More information

Microsoft Word doc

Microsoft Word doc 中 考 英 语 科 考 试 标 准 及 试 卷 结 构 技 术 指 标 构 想 1 王 后 雄 童 祥 林 ( 华 中 师 范 大 学 考 试 研 究 院, 武 汉,430079, 湖 北 ) 提 要 : 本 文 从 结 构 模 式 内 容 要 素 能 力 要 素 题 型 要 素 难 度 要 素 分 数 要 素 时 限 要 素 等 方 面 细 致 分 析 了 中 考 英 语 科 试 卷 结 构 的

More information

A dissertation for Master s degree Metro Indoor Coverage Systems Analysis And Design Author s Name: Sheng Hailiang speciality: Supervisor:Prof.Li Hui,

A dissertation for Master s degree Metro Indoor Coverage Systems Analysis And Design Author s Name: Sheng Hailiang speciality: Supervisor:Prof.Li Hui, 中 国 科 学 技 术 大 学 工 程 硕 士 学 位 论 文 地 铁 内 移 动 通 信 室 内 覆 盖 分 析 及 应 用 作 者 姓 名 : 学 科 专 业 : 盛 海 亮 电 子 与 通 信 导 师 姓 名 : 李 辉 副 教 授 赵 红 媛 高 工 完 成 时 间 : 二 八 年 三 月 十 日 University of Science and Technology of Ch A dissertation

More information

LH_Series_Rev2014.pdf

LH_Series_Rev2014.pdf REMINDERS Product information in this catalog is as of October 2013. All of the contents specified herein are subject to change without notice due to technical improvements, etc. Therefore, please check

More information

Microsoft Word - Final Exam Review Packet.docx

Microsoft Word - Final Exam Review Packet.docx Do you know these words?... 3.1 3.5 Can you do the following?... Ask for and say the date. Use the adverbial of time correctly. Use Use to ask a tag question. Form a yes/no question with the verb / not

More information

Research for RS encoding and decoding technology in the Digital Television Terrestrial Broadcasting System 2006 厦门大学博硕士论文摘要库

Research for RS encoding and decoding technology in the Digital Television Terrestrial Broadcasting System 2006 厦门大学博硕士论文摘要库 Research for RS encoding and decoding technology in the Digital Television Terrestrial Broadcasting System 2006 DMB-T RS DMB-T DMB-T RS(208,188) RS BM RS : 1 RS RS RS FPGA RS 2 RS 3 BM 4 matlab RS RS

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

A VALIDATION STUDY OF THE ACHIEVEMENT TEST OF TEACHING CHINESE AS THE SECOND LANGUAGE by Chen Wei A Thesis Submitted to the Graduate School and Colleg

A VALIDATION STUDY OF THE ACHIEVEMENT TEST OF TEACHING CHINESE AS THE SECOND LANGUAGE by Chen Wei A Thesis Submitted to the Graduate School and Colleg 上 海 外 国 语 大 学 SHANGHAI INTERNATIONAL STUDIES UNIVERSITY 硕 士 学 位 论 文 MASTER DISSERTATION 学 院 国 际 文 化 交 流 学 院 专 业 汉 语 国 际 教 育 硕 士 题 目 届 别 2010 届 学 生 陈 炜 导 师 张 艳 莉 副 教 授 日 期 2010 年 4 月 A VALIDATION STUDY

More information

Microsoft PowerPoint - talk8.ppt

Microsoft PowerPoint - talk8.ppt Adaptive Playout Scheduling Using Time-scale Modification Yi Liang, Nikolaus Färber Bernd Girod, Balaji Prabhakar Outline QoS concerns and tradeoffs Jitter adaptation as a playout scheduling scheme Packet

More information

Microsoft Word - 刘藤升答辩修改论文.doc

Microsoft Word - 刘藤升答辩修改论文.doc 武 汉 体 育 学 院 硕 士 学 位 论 文 ( 全 日 制 硕 士 ) 社 会 需 求 视 角 下 武 汉 体 院 乒 乓 球 硕 士 研 究 生 就 业 状 况 研 究 研 究 生 : 刘 藤 升 导 师 : 滕 守 刚 副 教 授 专 业 : 体 育 教 育 训 练 学 研 究 方 向 : 乒 乓 球 教 学 训 练 理 论 与 方 法 2015 年 5 月 分 类 号 : G8 学 校 代

More information

MAN- Metropolitan Area Network Resilient Packet Ring a : 5GHz 54Mbps b : 2.4GHz 11Mbps c : MAC Bridge 802.1D 80

MAN- Metropolitan Area Network Resilient Packet Ring a : 5GHz 54Mbps b : 2.4GHz 11Mbps c : MAC Bridge 802.1D 80 IEEE 802.11a s0323516@ncnu.edu.tw 1 (WLAN) [1] 1963 IEEE Institute Of Electrical and Electronics Engineers LAN MAN-Metropolitan Area Network IEEE 802 IEEE 802 Working Group 802.11 IEEE 802 802.1 LAN MAN

More information

<4D6963726F736F667420576F7264202D205F4230365FB942A5CEA668B443C5E9BB73A740B5D8A4E5B8C9A552B1D0A7F75FA6BFB1A4ACFC2E646F63>

<4D6963726F736F667420576F7264202D205F4230365FB942A5CEA668B443C5E9BB73A740B5D8A4E5B8C9A552B1D0A7F75FA6BFB1A4ACFC2E646F63> 運 用 多 媒 體 製 作 華 文 補 充 教 材 江 惜 美 銘 傳 大 學 應 用 中 文 系 chm248@gmail.com 摘 要 : 本 文 旨 在 探 究 如 何 運 用 多 媒 體, 結 合 文 字 聲 音 圖 畫, 製 作 華 文 補 充 教 材 當 我 們 在 進 行 華 文 教 學 時, 往 往 必 須 透 過 教 案 設 計, 並 製 作 補 充 教 材, 方 能 使 教 學

More information

Microsoft PowerPoint _代工實例-1

Microsoft PowerPoint _代工實例-1 4302 動態光散射儀 (Dynamic Light Scattering) 代工實例與結果解析 生醫暨非破壞性分析團隊 2016.10 updated Which Size to Measure? Diameter Many techniques make the useful and convenient assumption that every particle is a sphere. The

More information

2

2 1 2 3 4 PHY (RAN1) LTE/LTE-A 6.3 Enhanced Downlink Multiple Antenna Transmission 6.3.1 CSI RS 6.4 Uplink Multiple Antenna Transmission 6.4.1 Transmission modes and Signalling requirements for SU-MIMO 6.5

More information

Untitled-3

Untitled-3 SEC.. Separable Equations In each of problems 1 through 8 solve the given differential equation : ü 1. y ' x y x y, y 0 fl y - x 0 fl y - x 0 fl y - x3 3 c, y 0 ü. y ' x ^ y 1 + x 3 x y 1 + x 3, y 0 fl

More information

國家圖書館典藏電子全文

國家圖書館典藏電子全文 i ii Abstract The most important task in human resource management is to encourage and help employees to develop their potential so that they can fully contribute to the organization s goals. The main

More information

TX-NR3030_BAS_Cs_ indd

TX-NR3030_BAS_Cs_ indd TX-NR3030 http://www.onkyo.com/manual/txnr3030/adv/cs.html Cs 1 2 3 Speaker Cable 2 HDMI OUT HDMI IN HDMI OUT HDMI OUT HDMI OUT HDMI OUT 1 DIGITAL OPTICAL OUT AUDIO OUT TV 3 1 5 4 6 1 2 3 3 2 2 4 3 2 5

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF I II III The Study of Factors to the Failure or Success of Applying to Holding International Sport Games Abstract For years, holding international sport games has been Taiwan s goal and we are on the way

More information

Logitech Wireless Combo MK45 English

Logitech Wireless Combo MK45 English Logitech Wireless Combo MK45 Setup Guide Logitech Wireless Combo MK45 English................................................................................... 7..........................................

More information

TURBO LDPC

TURBO LDPC --- 2 TURBO LDPC --- / / / (dbm) -20-40 -60-80 0-100 0 4 8 12 16 d 2 2 d>>dc dc --- f2-f1 >> Bc RAKE ARQ α 1 α 2 α 3 α M Selective Combining SNR Equal-Gain Combining maximal Ratio Combining SNR 10-1

More information

1對外華語文詞彙教學的策略研究_第三次印).doc

1對外華語文詞彙教學的策略研究_第三次印).doc 37 92 1 16 1 2 3 4 5 6 7 8????? 9????????? 10???????????????????? 11? 12 13 14 15 16 The Strategy Research of Teaching Chinese as a Second Language Li-Na Fang Department of Chinese, National Kaohsiung

More information

UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 厦门大学博硕士论文摘要库

UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 厦门大学博硕士论文摘要库 10384 15620071151397 UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 2010 4 Duffee 1999 AAA Vasicek RMSE RMSE Abstract In order to investigate whether adding macro factors

More information

Microsoft PowerPoint - CH 04 Techniques of Circuit Analysis

Microsoft PowerPoint - CH 04 Techniques of Circuit Analysis Chap. 4 Techniques of Circuit Analysis Contents 4.1 Terminology 4.2 Introduction to the Node-Voltage Method 4.3 The Node-Voltage Method and Dependent Sources 4.4 The Node-Voltage Method: Some Special Cases

More information

PowerPoint Presentation

PowerPoint Presentation ITM omputer and ommunication Technologies Lecture #4 Part I: Introduction to omputer Technologies Logic ircuit Design & Simplification ITM 計算機與通訊技術 2 23 香港中文大學電子工程學系 Logic function implementation Logic

More information

untitled

untitled 20 90 1998 2001 1 Abstract Under the environment of drastic competitive market, risk and uncertainty that the enterprise faces are greater and greater, the profit ability of enterprise assets rises and

More information

Lab 4

Lab 4 EE4650 通訊實驗 Lab 4 PSK, FSK, and ASK Digital Modulations 1 Lab 4:PSK, FSK, ASK Digital Modulations Baseband Tx RF Frontend M- Seq 0101 Error Correction coding 010110 Digital Modulation D/A BPF PA cos(2πf

More information

Microsoft Word - ChineseSATII .doc

Microsoft Word - ChineseSATII .doc 中 文 SAT II 冯 瑶 一 什 么 是 SAT II 中 文 (SAT Subject Test in Chinese with Listening)? SAT Subject Test 是 美 国 大 学 理 事 会 (College Board) 为 美 国 高 中 生 举 办 的 全 国 性 专 科 标 准 测 试 考 生 的 成 绩 是 美 国 大 学 录 取 新 生 的 重 要 依

More information

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I 2004 5 IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I Abstract The techniques of digital video processing, transferring

More information

2015 Chinese FL Written examination

2015 Chinese FL Written examination Victorian Certificate of Education 2015 SUPERVISOR TO ATTACH PROCESSING LABEL HERE Letter STUDENT NUMBER CHINESE FIRST LANGUAGE Written examination Monday 16 November 2015 Reading time: 11.45 am to 12.00

More information

untitled

untitled MSE200 Lecture 10 (CH. 7.3-7.4) Mechanical Properties II Instructor: Yuntian Zhu Objectives/outcoes: You will learn the following: Crack growth rate during fatigue. Fatigue life of cracked coponents. Stages

More information

Your Field Guide to More Effective Global Video Conferencing As a global expert in video conferencing, and a geographically dispersed company that uses video conferencing in virtually every aspect of its

More information

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

More information

Microsoft PowerPoint - ATF2015.ppt [相容模式]

Microsoft PowerPoint - ATF2015.ppt [相容模式] Improving the Video Totalized Method of Stopwatch Calibration Samuel C.K. Ko, Aaron Y.K. Yan and Henry C.K. Ma The Government of Hong Kong Special Administrative Region (SCL) 31 Oct 2015 1 Contents Introduction

More information

考試學刊第10期-內文.indd

考試學刊第10期-內文.indd misconception 101 Misconceptions and Test-Questions of Earth Science in Senior High School Chun-Ping Weng College Entrance Examination Center Abstract Earth Science is a subject highly related to everyday

More information

报 告 1: 郑 斌 教 授, 美 国 俄 克 拉 荷 马 大 学 医 学 图 像 特 征 分 析 与 癌 症 风 险 评 估 方 法 摘 要 : 准 确 的 评 估 癌 症 近 期 发 病 风 险 和 预 后 或 者 治 疗 效 果 是 发 展 和 建 立 精 准 医 学 的 一 个 重 要 前

报 告 1: 郑 斌 教 授, 美 国 俄 克 拉 荷 马 大 学 医 学 图 像 特 征 分 析 与 癌 症 风 险 评 估 方 法 摘 要 : 准 确 的 评 估 癌 症 近 期 发 病 风 险 和 预 后 或 者 治 疗 效 果 是 发 展 和 建 立 精 准 医 学 的 一 个 重 要 前 东 北 大 学 中 荷 生 物 医 学 与 信 息 工 程 学 院 2016 年 度 生 物 医 学 与 信 息 工 程 论 坛 会 议 时 间 2016 年 6 月 8 日, 星 期 三,9:30 至 16:00 会 议 地 址 会 议 网 址 主 办 单 位 东 北 大 学 浑 南 校 区 沈 阳 市 浑 南 区 创 新 路 195 号 生 命 科 学 大 楼 B 座 619 报 告 厅 http://www.bmie.neu.edu.cn

More information

Olav Lundström MicroSCADA Pro Marketing & Sales 2005 ABB - 1-1MRS755673

Olav Lundström MicroSCADA Pro Marketing & Sales 2005 ABB - 1-1MRS755673 Olav Lundström MicroSCADA Pro Marketing & Sales 2005 ABB - 1 - Contents MicroSCADA Pro Portal Marketing and sales Ordering MicroSCADA Pro Partners Club 2005 ABB - 2 - MicroSCADA Pro - Portal Imagine that

More information

Microsoft PowerPoint - ch2-stallings.ppt

Microsoft PowerPoint - ch2-stallings.ppt Transmission Fundamentals Chapter 2 (Stallings Book) 1 Electromagnetic Signal is a function of time can also be expressed as a function of frequency Signal consists of components of different frequencies

More information

y 1 = 槡 P 1 1h T 1 1f 1 s 1 + 槡 P 1 2g T 1 2 interference 2f 2 s y 2 = 槡 P 2 2h T 2 2f 2 s 2 + 槡 P 2 1g T 2 1 interference 1f 1 s + n n

y 1 = 槡 P 1 1h T 1 1f 1 s 1 + 槡 P 1 2g T 1 2 interference 2f 2 s y 2 = 槡 P 2 2h T 2 2f 2 s 2 + 槡 P 2 1g T 2 1 interference 1f 1 s + n n 37 1 Vol 37 No 1 2013 1 Journal of Jiangxi Normal UniversityNatural Science Jan 2013 1000-5862201301-0037-05 MISO 郭荣新, 袁继昌 361021 2 RVQ 2 MISO 3 TN 911 7 A 0 MIMO 2 MISO 3 MIMOnetwork MIMO 3GPP LTE-A 2

More information

small fire59-004.indd

small fire59-004.indd RReadingWritingArithmetic People with goals succeed because they know where they are going 2 Prepare our students for life Promote their thinking and broaden their horizons Owing to the infl ux of digital

More information

影響新產品開發成效之造型要素探討

影響新產品開發成效之造型要素探討 異 行 車 例 A Study on the Product Forms Recognition Difference between Designer and Consumer --- Electrical Bicycle as Example. 行 車 省 力 力 綠 老 女 行 車 行 車 了 不 了 行 行 車 行 車 不 行 車 異 行 車 車 車 行 行 異 數 量 I 類 行 異 異

More information

2009.05

2009.05 2009 05 2009.05 2009.05 璆 2009.05 1 亿 平 方 米 6 万 套 10 名 20 亿 元 5 个 月 30 万 亿 60 万 平 方 米 Data 围 观 CCDI 公 司 内 刊 企 业 版 P08 围 观 CCDI 管 理 学 上 有 句 名 言 : 做 正 确 的 事, 比 正 确 地 做 事 更 重 要 方 向 的 对 错 于 大 局 的 意 义 而 言,

More information

入學考試網上報名指南

入學考試網上報名指南 入 學 考 試 網 上 報 名 指 南 On-line Application Guide for Admission Examination 16/01/2015 University of Macau Table of Contents Table of Contents... 1 A. 新 申 請 網 上 登 記 帳 戶 /Register for New Account... 2 B. 填

More information

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63>

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63> 2010 年 理 工 类 AB 级 阅 读 判 断 例 题 精 选 (2) Computer mouse How does the mouse work? We have to start at the bottom, so think upside down for now. It all starts with mouse ball. As the mouse ball in the bottom

More information

K301Q-D VRT中英文说明书141009

K301Q-D VRT中英文说明书141009 THE INSTALLING INSTRUCTION FOR CONCEALED TANK Important instuction:.. Please confirm the structure and shape before installing the toilet bowl. Meanwhile measure the exact size H between outfall and infall

More information

TA-research-stats.key

TA-research-stats.key Research Analysis MICHAEL BERNSTEIN CS 376 Last time What is a statistical test? Chi-square t-test Paired t-test 2 Today ANOVA Posthoc tests Two-way ANOVA Repeated measures ANOVA 3 Recall: hypothesis testing

More information

Computer Architecture

Computer Architecture ECE 3120 Computer Systems Assembly Programming Manjeera Jeedigunta http://blogs.cae.tntech.edu/msjeedigun21 Email: msjeedigun21@tntech.edu Tel: 931-372-6181, Prescott Hall 120 Prev: Basic computer concepts

More information

Microsoft PowerPoint - ryz_030708_pwo.ppt

Microsoft PowerPoint - ryz_030708_pwo.ppt Long Term Recovery of Seven PWO Crystals Ren-yuan Zhu California Institute of Technology CMS ECAL Week, CERN Introduction 20 endcap and 5 barrel PWO crystals went through (1) thermal annealing at 200 o

More information

08_toukei03.dvi

08_toukei03.dvi 2013 61 1 123 134 c 2013 2012 6 28 8 28 9 5 LDPC Low-Density Parity-Check LDPC MIMO 1. 2002 Feldman LP Feldman, 2003; Feldman et al., 2005 Feldman Vontobel and Koetter 2006 Koetter and Vontobel 2003 Burshtein

More information

國立桃園高中96學年度新生始業輔導新生手冊目錄

國立桃園高中96學年度新生始業輔導新生手冊目錄 彰 化 考 區 104 年 國 中 教 育 會 考 簡 章 簡 章 核 定 文 號 : 彰 化 縣 政 府 104 年 01 月 27 日 府 教 學 字 第 1040027611 號 函 中 華 民 國 104 年 2 月 9 日 彰 化 考 區 104 年 國 中 教 育 會 考 試 務 會 編 印 主 辦 學 校 : 國 立 鹿 港 高 級 中 學 地 址 :50546 彰 化 縣 鹿 港 鎮

More information

Stochastic Processes (XI) Hanjun Zhang School of Mathematics and Computational Science, Xiangtan University 508 YiFu Lou talk 06/

Stochastic Processes (XI) Hanjun Zhang School of Mathematics and Computational Science, Xiangtan University 508 YiFu Lou talk 06/ Stochastic Processes (XI) Hanjun Zhang School of Mathematics and Computational Science, Xiangtan University hjzhang001@gmail.com 508 YiFu Lou talk 06/04/2010 - Page 1 Outline 508 YiFu Lou talk 06/04/2010

More information

Microsoft PowerPoint - STU_EC_Ch04.ppt

Microsoft PowerPoint - STU_EC_Ch04.ppt 樹德科技大學資訊工程系 Chapter 4: Boolean Algebra and Logic Simplification Shi-Huang Chen Fall 200 Outline Boolean Operations and Expressions Laws and Rules of Boolean Algebra DeMorgan's Theorems Boolean Analysis

More information

<4D6963726F736F667420576F7264202D203033BDD7A16DA576B04FA145A4ADABD2A5BBACF6A16EADBAB6C0ABD2A4A7B74EB8712E646F63>

<4D6963726F736F667420576F7264202D203033BDD7A16DA576B04FA145A4ADABD2A5BBACF6A16EADBAB6C0ABD2A4A7B74EB8712E646F63> 論 史 記 五 帝 本 紀 首 黃 帝 之 意 義 林 立 仁 明 志 科 技 大 學 通 識 教 育 中 心 副 教 授 摘 要 太 史 公 司 馬 遷 承 父 著 史 遺 志, 並 以 身 膺 五 百 年 大 運, 上 繼 孔 子 春 秋 之 史 學 文 化 道 統 為 其 職 志, 著 史 記 欲 達 究 天 人 之 際, 通 古 今 之 變, 成 一 家 之 言 之 境 界 然 史 記 百

More information

The Development of Color Constancy and Calibration System

The Development of Color Constancy and Calibration System The Development of Color Constancy and Calibration System The Development of Color Constancy and Calibration System LabVIEW CCD BMP ii Abstract The modern technologies develop more and more faster, and

More information

A Study on Grading and Sequencing of Senses of Grade-A Polysemous Adjectives in A Syllabus of Graded Vocabulary for Chinese Proficiency 2002 I II Abstract ublished in 1992, A Syllabus of Graded Vocabulary

More information

ch_code_infoaccess

ch_code_infoaccess 地 產 代 理 監 管 局 公 開 資 料 守 則 2014 年 5 月 目 錄 引 言 第 1 部 段 數 適 用 範 圍 1.1-1.2 監 管 局 部 門 1.1 紀 律 研 訊 1.2 提 供 資 料 1.3-1.6 按 慣 例 公 布 或 供 查 閱 的 資 料 1.3-1.4 應 要 求 提 供 的 資 料 1.5 法 定 義 務 及 限 制 1.6 程 序 1.7-1.19 公 開 資

More information

2009 Japanese First Language Written examination

2009 Japanese First Language Written examination Victorian Certificate of Education 2009 SUPERVISOR TO ATTACH PROCESSING LABEL HERE STUDENT NUMBER Letter Figures Words JAPANESE FIRST LANGUAGE Written examination Monday 16 November 2009 Reading time:

More information

2010 Japanese First Language Written examination

2010 Japanese First Language Written examination Victorian Certificate of Education 2010 SUPERVISOR TO ATTACH PROCESSING LABEL HERE STUDENT NUMBER Letter Figures Words JAPANESE FIRST LANGUAGE Written examination Monday 15 November 2010 Reading time:

More information

SHIMPO_表1-表4

SHIMPO_表1-表4 For servo motor ABLEREDUCER L Series Features Coaxial shaft series L series Helical gears contribute to reduce vibration and noise. Standard backlash is 5 arc-min, ideal for precision control. High rigidity

More information

Chapter 24 DC Battery Sizing

Chapter 24  DC Battery Sizing 26 (Battery Sizing & Discharge Analysis) - 1. 2. 3. ETAP PowerStation IEEE 485 26-1 ETAP PowerStation 4.7 IEEE 485 ETAP PowerStation 26-2 ETAP PowerStation 4.7 26.1 (Study Toolbar) / (Run Battery Sizing

More information

Chn 116 Neh.d.01.nis

Chn 116 Neh.d.01.nis 31 尼 希 米 书 尼 希 米 的 祷 告 以 下 是 哈 迦 利 亚 的 儿 子 尼 希 米 所 1 说 的 话 亚 达 薛 西 王 朝 二 十 年 基 斯 流 月 *, 我 住 在 京 城 书 珊 城 里 2 我 的 兄 弟 哈 拿 尼 和 其 他 一 些 人 从 犹 大 来 到 书 珊 城 我 向 他 们 打 听 那 些 劫 后 幸 存 的 犹 太 人 家 族 和 耶 路 撒 冷 的 情 形

More information

1 VLBI VLBI 2 32 MHz 2 Gbps X J VLBI [3] CDAS IVS [4,5] CDAS MHz, 16 MHz, 8 MHz, 4 MHz, 2 MHz [6] CDAS VLBI CDAS 2 CDAS CDAS 5 2

1 VLBI VLBI 2 32 MHz 2 Gbps X J VLBI [3] CDAS IVS [4,5] CDAS MHz, 16 MHz, 8 MHz, 4 MHz, 2 MHz [6] CDAS VLBI CDAS 2 CDAS CDAS 5 2 32 1 Vol. 32, No. 1 2014 2 PROGRESS IN ASTRONOMY Feb., 2014 doi: 10.3969/j.issn.1000-8349.2014.01.07 VLBI 1,2 1,2 (1. 200030 2. 200030) VLBI (Digital Baseband Convertor DBBC) CDAS (Chinese VLBI Data Acquisition

More information

Microsoft Word - KSAE06-S0262.doc

Microsoft Word - KSAE06-S0262.doc Stereo Vision based Forward Collision Warning and Avoidance System Yunhee LeeByungjoo KimHogi JungPaljoo Yoon Central R&D Center, MANDO Corporation, 413-5, Gomae-Ri, Gibeung-Eub, Youngin-Si, Kyonggi-Do,

More information

2008 Nankai Business Review 61

2008 Nankai Business Review 61 150 5 * 71272026 60 2008 Nankai Business Review 61 / 62 Nankai Business Review 63 64 Nankai Business Review 65 66 Nankai Business Review 67 68 Nankai Business Review 69 Mechanism of Luxury Brands Formation

More information

Knowledge and its Place in Nature by Hilary Kornblith

Knowledge and its Place in Nature by Hilary Kornblith Deduction by Daniel Bonevac Chapter 7 Quantified Natural Deduction Quantified Natural Deduction As with truth trees, natural deduction in Q depends on the addition of some new rules to handle the quantifiers.

More information

10384 19020101152519 UDC Rayleigh Quasi-Rayleigh Method for computing eigenvalues of symmetric tensors 2 0 1 3 2 0 1 3 2 0 1 3 2013 , 1. 2. [4], [27].,. [6] E- ; [7], Z-. [15]. Ramara G. kolda [1, 2],

More information

2009 Korean First Language Written examination

2009 Korean First Language Written examination Victorian Certificate of Education 2009 SUPERVISOR TO ATTACH PROCESSING LABEL HERE STUDENT NUMBER Letter Figures Words KOREAN FIRST LANGUAGE Written examination Tuesday 20 October 2009 Reading time: 2.00

More information

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d WeChat Search Visual Identity Guidelines WEDESIGN 2018. 04 Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF TPM TPM TPM TPM TPM TPM TPM TPM TPM : (TPM)MP (Synergy) ii Abstract There are over 60 companies, which have had the experience in TPM implementation, but only 12 companies have got TPM Award until 2000.

More information

Microsoft PowerPoint - ch6 [相容模式]

Microsoft PowerPoint - ch6 [相容模式] UiBinder wzyang@asia.edu.tw UiBinder Java GWT UiBinder XML UI i18n (widget) 1 2 UiBinder HelloWidget.ui.xml: UI HelloWidgetBinder HelloWidget.java XML UI Owner class ( Composite ) UI XML UiBinder: Owner

More information

可 愛 的 動 物 小 五 雷 雅 理 第 一 次 小 六 甲 黃 駿 朗 今 年 暑 假 發 生 了 一 件 令 人 非 常 難 忘 的 事 情, 我 第 一 次 參 加 宿 營, 離 開 父 母, 自 己 照 顧 自 己, 出 發 前, 我 的 心 情 十 分 緊 張 當 到 達 目 的 地 後

可 愛 的 動 物 小 五 雷 雅 理 第 一 次 小 六 甲 黃 駿 朗 今 年 暑 假 發 生 了 一 件 令 人 非 常 難 忘 的 事 情, 我 第 一 次 參 加 宿 營, 離 開 父 母, 自 己 照 顧 自 己, 出 發 前, 我 的 心 情 十 分 緊 張 當 到 達 目 的 地 後 郭家朗 許鈞嵐 劉振迪 樊偉賢 林洛鋒 第 36 期 出版日期 28-3-2014 出版日期 28-3-2014 可 愛 的 動 物 小 五 雷 雅 理 第 一 次 小 六 甲 黃 駿 朗 今 年 暑 假 發 生 了 一 件 令 人 非 常 難 忘 的 事 情, 我 第 一 次 參 加 宿 營, 離 開 父 母, 自 己 照 顧 自 己, 出 發 前, 我 的 心 情 十 分 緊 張 當 到 達 目

More information

Microsoft PowerPoint - Performance Analysis of Video Streaming over LTE using.pptx

Microsoft PowerPoint - Performance Analysis of Video Streaming over LTE using.pptx ENSC 427 Communication Networks Spring 2016 Group #2 Project URL: http://www.sfu.ca/~rkieu/ensc427_project.html Amer, Zargham 301149920 Kieu, Ritchie 301149668 Xiao, Lei 301133381 1 Roadmap Introduction

More information

硕 士 学 位 论 文 论 文 题 目 : 北 岛 诗 歌 创 作 的 双 重 困 境 专 业 名 称 : 中 国 现 当 代 文 学 研 究 方 向 : 中 国 新 诗 研 究 论 文 作 者 : 奚 荣 荣 指 导 老 师 : 姜 玉 琴 2014 年 12 月

硕 士 学 位 论 文 论 文 题 目 : 北 岛 诗 歌 创 作 的 双 重 困 境 专 业 名 称 : 中 国 现 当 代 文 学 研 究 方 向 : 中 国 新 诗 研 究 论 文 作 者 : 奚 荣 荣 指 导 老 师 : 姜 玉 琴 2014 年 12 月 硕 士 学 位 论 文 论 文 题 目 : 北 岛 诗 歌 创 作 的 双 重 困 境 专 业 名 称 : 中 国 现 当 代 文 学 研 究 方 向 : 中 国 新 诗 研 究 论 文 作 者 : 奚 荣 荣 指 导 老 师 : 姜 玉 琴 2014 年 12 月 致 谢 文 学 是 我 们 人 类 宝 贵 的 精 神 财 富 两 年 半 的 硕 士 学 习 让 我 进 一 步 接 近 文 学,

More information

SuperMap 系列产品介绍

SuperMap 系列产品介绍 wuzhihong@scu.edu.cn 3 / 1 / 16 / John M. Yarbrough: Digital Logic Applications and Design + + 30% 70% 1 CHAPTER 1 Digital Concepts and Number Systems 1.1 Digital and Analog: Basic Concepts P1 1.1 1.1

More information

南華大學數位論文

南華大學數位論文 Rebuilding The Golden Town Everyday Life and Space at Jin-gua-shi 1897-1987.. ABSTRACT Rebuilding The Golden Town Everyday Life and Space at Jin-gua-shi ABSTRACT This thesis focuses on the formation of

More information

2005 5,,,,,,,,,,,,,,,,, , , 2174, 7014 %, % 4, 1961, ,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2

2005 5,,,,,,,,,,,,,,,,, , , 2174, 7014 %, % 4, 1961, ,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2 3,,,,,, 1872,,,, 3 2004 ( 04BZS030),, 1 2005 5,,,,,,,,,,,,,,,,, 1928 716,1935 6 2682 1928 2 1935 6 1966, 2174, 7014 %, 94137 % 4, 1961, 59 1929,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2 , :,,,, :,,,,,,

More information

徐汇教育214/3月刊 重 点 关 注 高中生异性交往的小团体辅导 及效果研究 颜静红 摘 要 采用人际关系综合诊断量表 郑日昌编制并 与同性交往所不能带来的好处 带来稳定感和安全感 能 修订 对我校高一学生进行问卷测量 实验组前后测 在 够度过更快乐的时光 获得与别人友好相处的经验 宽容 量表总分和第 4 项因子分 异性交往困扰 上均有显著差 大度和理解力得到发展 得到掌握社会技术的机会 得到 异

More information

Microsoft Word - p11.doc

Microsoft Word - p11.doc () 11-1 ()Classification Analysis( ) m() p.d.f prior (decision) (loss function) Bayes Risk for any decision d( ) posterior risk posterior risk Posterior prob. j (uniform prior) where Mahalanobis Distance(M-distance)

More information

SHIMPO_表1-表4

SHIMPO_表1-表4 For servo motor ABLEREDUCER SSeries Coaxial shaft series Features S series Standard backlash is 3 arc-min, ideal for precision control. High rigidity & high torque were achived by uncaged needle roller

More information

01 招 生 简 章 03 考 试 说 明 04 笔 试 样 题 2 emba.pbcsf.tsinghua.edu.cn

01 招 生 简 章 03 考 试 说 明 04 笔 试 样 题 2 emba.pbcsf.tsinghua.edu.cn 01 招 生 简 章 03 考 试 说 明 04 笔 试 样 题 2 emba.pbcsf.tsinghua.edu.cn 清 华 五 道 口 金 融 EMBA 招 生 简 章 金 融 EMBA 教 育 中 心 2012 年, 为 加 快 现 代 金 融 学 科 建 设, 培 养 高 端 金 融 人 才, 促 进 金 融 界 与 金 融 教 育 界 的 联 系, 提 高 金 融 研 究 水 平, 推

More information

Microsoft Word - 武術合併

Microsoft Word - 武術合併 11/13 醫 學 系 一 年 級 張 雲 筑 武 術 課 開 始, 老 師 並 不 急 著 帶 我 們 舞 弄 起 來, 而 是 解 說 著 支 配 氣 的 流 動 為 何 構 成 中 國 武 術 的 追 求 目 標 武 術, 名 之 為 武 恐 怕 與 其 原 本 的 精 義 有 所 偏 差 其 實 武 術 是 為 了 讓 學 習 者 能 夠 掌 握 身 體, 保 養 身 體 而 發 展, 並

More information

University of Science and Technology of China A dissertation for master s degree Research of e-learning style for public servants under the context of

University of Science and Technology of China A dissertation for master s degree Research of e-learning style for public servants under the context of 中 国 科 学 技 术 大 学 硕 士 学 位 论 文 新 媒 体 环 境 下 公 务 员 在 线 培 训 模 式 研 究 作 者 姓 名 : 学 科 专 业 : 导 师 姓 名 : 完 成 时 间 : 潘 琳 数 字 媒 体 周 荣 庭 教 授 二 一 二 年 五 月 University of Science and Technology of China A dissertation for

More information

附件1:

附件1: 附 件 1: 全 国 优 秀 教 育 硕 士 专 业 学 位 论 文 推 荐 表 单 位 名 称 : 西 南 大 学 论 文 题 目 填 表 日 期 :2014 年 4 月 30 日 数 学 小 组 合 作 学 习 的 课 堂 管 理 攻 硕 期 间 及 获 得 硕 士 学 位 后 一 年 内 获 得 与 硕 士 学 位 论 文 有 关 的 成 果 作 者 姓 名 论 文 答 辩 日 期 学 科 专

More information