Chapter 9. Carrier Acquisition and Tracking. March 5, 2008

Size: px
Start display at page:

Download "Chapter 9. Carrier Acquisition and Tracking. March 5, 2008"

Transcription

1 Chapter 9 Carrier Acquisition and Tracking March 5, 2008

2 b[n] coder bit/ symbol transmit filter, pt(t) Modulator Channel, c(t) noise interference form other users LNA/ AGC Demodulator receive/matched filter, p R(t) sampler Equalizer slicer/ decoder ˆb[n] Carrier recovery Timing recovery

3 9.1 Non-Data Aided Carrier Recovery Methods

4 9.1.1 Binary PSK with a rectangular pulse-shape x BPSK (t) = x(t) cos(2πf c t) where x(t) = s[n]p T (t nt b ), n= s[n] {+1, 1} are the transmit symbols (bits).

5 9.1.1 Binary PSK with a rectangular pulse-shape x BPSK (t) = x(t) cos(2πf c t) where x(t) = s[n]p T (t nt b ), n= s[n] {+1, 1} are the transmit symbols (bits). When p T (t nt b ) = Π ( t T b ), x(t) = ±1, and thus x 2 BPSK(t) = cos 2 (2πf c t) = cos(4πf ct).

6 9.1.2 Binary PSK with a band-limited pulse-shape y BPSK (t) = y(t) cos(2πf c t + θ 0 )

7 9.1.2 Binary PSK with a band-limited pulse-shape y BPSK (t) = y(t) cos(2πf c t + θ 0 ) y 2 BPSK(t) = 1 2 (y 2 rms + y ac (t))(1 + cos(4πf c t + 2θ 0 ))

8 9.1.2 Binary PSK with a band-limited pulse-shape (continued) MATLAB Script CRExp1.m Tb=0.0001; L=100; Ts=Tb/L; fc=100000; fs=1/ts; alpha=0.5; N=8*L; sigmav=0; c=1; s=sign(randn(1000,1)); pt=sr cos p(n,l,alpha); xt=conv(expander(s,l),pt); t=[0:length(xt)-1] *Ts; xt=cos(2*pi*fc*t).*xt; xr=conv(c,xt); xr=xr+sigmav*randn(size(xr)); xr2 = xr.ˆ2; [ X, F ]=spec analysis(xr2,fs); figure, axes( position,[ ]), plot(f,x, k ) xlabel( FREQUENCY, Hz ), ylabel( AMPLITUDE )

9 9.1.2 Binary PSK with a band-limited pulse-shape (continued) 6 x AMPLITUDE FREQUENCY, Hz x 10 5

10 9.1.3 Quadrature Amplitude Modulation In the case of QAM, the modulation process results in the complex baseband signal where θ(t) = 2π f c t + θ 0. y(t) = (x R (t) + jx I (t))e jθ(t)

11 9.1.3 Quadrature Amplitude Modulation In the case of QAM, the modulation process results in the complex baseband signal y(t) = (x R (t) + jx I (t))e jθ(t) where θ(t) = 2π f c t + θ 0. Taking the 4th power of y(t), we get or y 4 (t) = ( x 4 R (t) + x 4 I (t) 6x 2 R (t)x 2 I (t) + j2x R (t)x I (t)(x 2 R (t) x 2 I (t))) e j4θ(t) y 4 (t) = m y4 e j4θ(t) + v(t)e j4θ(t) where [ ] m y4 = avg xr(t) 4 + xi 4 (t) 6xR(t)x 2 I 2 (t).

12 Numerical Study of m y4 m y4 = m y4 E [ y(t) 4 ] Table: Numerical values of the normalized mean m y4 for different QAM constellations and three choices of the roll-off factor α. Constellation α = 0.25 α = 0.5 α = 1 4-QAM/QPSK QAM QAM QAM

13 MATLAB Script CRExp2.m Tb=0.0001; L=100; M1=20; Ts=Tb/L; fs=1/ts; fc=100000; Dfc=10; N=8*L; phic=0.5; sigmav=0; alpha=0.5; c=1; Nb=12000; b=sign(randn(nb,1)); M=input( QAM size (4, 16, 64, 256) = ); if M==4 s=b(1:2:end)+i*b(2:2:end); elseif M==16 s=2*b(1:4:end)+b(2:4:end)+i*(2*b(3:4:end)+b(4:4:end)); elseif M==64 s=4*b(1:6:end)+2*b(2:6:end)+b(3:6:end)+... j*(4*b(4:6:end)+2*b(5:6:end)+b(6:6:end)); elseif M==256 s=8*b(1:8:end)+4*b(2:8:end)+2*b(3:8:end)+b(4:8:end)+... j*(8*b(5:8:end)+4*b(6:8:end)+2*b(7:8:end)+b(8:8:end)); else print( Error! M should be 4, 16, 64 or 256 ); end pt=sr cos p(n,l,alpha); xbbt=conv(expander(s,l),pt); t=[0:length(xbbt)-1] *Ts; xt=real(exp(i*2*pi*fc*t).*xbbt); xr=conv(c,xt); xr=xr+sigmav*randn(size(xr)); t=[0:length(xr)-1] *Ts; y=2*exp(-i*(2*pi*(fc-dfc)*t-phic)).*xr; pr=pt; y=conv(y,pr); y=y(1:m1:end); fs1=fs/m1; y4=y.ˆ4; [ X, F ]=spec analysis(y4,fs1); figure, axes( position,[ ]), plot(f,x, k ) xlabel( FREQUENCY, Hz ), ylabel( AMPLITUDE )

14 AMPLITUDE FREQUENCY, Hz x 10 4

15 9.2 Non-Data Aided Carrier Acquisition and Tracking Algorithms

16 9.2.1 Coarse carrier acquisition MATLAB Script CRExp2.m (Extension 1) Coarse carrier acquisition and compensation [xmax,imax]=max(x); Dfc est=f(imax)/4; y1=y.*exp(-j*2*pi*dfc est*ts*m1);

17 9.2.2 Fine carrier acquisition and tracking y[n] ( ) 4 PLL 4 Interpolator e j

18 9.3 Costas Loop Costas loop for AM signal x AM [n] = x[n] cos(2πf c nt s + θ) + ν[n]

19 9.3 Costas Loop Costas loop for AM signal x AM [n] = x[n] cos(2πf c nt s + θ) + ν[n] We wish to synthesize and adjust φ to track θ. y[n] = cos(2πf c nt s + φ)

20 9.3 Costas Loop Costas loop for AM signal x AM [n] = x[n] cos(2πf c nt s + θ) + ν[n] We wish to synthesize y[n] = cos(2πf c nt s + φ) and adjust φ to track θ. Cost function: [ ( ) ] 2 ξ = E LP(x AM [n]y[n])

21 9.3 Costas Loop Costas loop for AM signal x AM [n] = x[n] cos(2πf c nt s + θ) + ν[n] We wish to synthesize y[n] = cos(2πf c nt s + φ) and adjust φ to track θ. Cost function: [ ( ) ] 2 ξ = E LP(x AM [n]y[n]) Here, x AM [n]y[n] = x[n] 2 and [ ] cos(θ φ)+cos(4πf c nt s +θ+φ) +ν[n] cos(2πf c nt s +φ) LP(x AM [n]y[n]) = x[n] 2 cos(θ φ) + ψ[n].

22 9.3 Costas Loop Costas loop for AM signal x AM [n] = x[n] cos(2πf c nt s + θ) + ν[n] We wish to synthesize y[n] = cos(2πf c nt s + φ) and adjust φ to track θ. Cost function: [ ( ) ] 2 ξ = E LP(x AM [n]y[n]) Here, x AM [n]y[n] = x[n] 2 and Hence, [ ] cos(θ φ)+cos(4πf c nt s +θ+φ) +ν[n] cos(2πf c nt s +φ) LP(x AM [n]y[n]) = x[n] 2 cos(θ φ) + ψ[n]. ξ = σ2 x 4 cos2 (θ φ) + σ 2 ψ

23 9.3 Costas Loop Costas loop for AM signal x AM [n] = x[n] cos(2πf c nt s + θ) + ν[n] We wish to synthesize y[n] = cos(2πf c nt s + φ) and adjust φ to track θ. Cost function: [ ( ) ] 2 ξ = E LP(x AM [n]y[n]) Here, x AM [n]y[n] = x[n] 2 and Hence, [ ] cos(θ φ)+cos(4πf c nt s +θ+φ) +ν[n] cos(2πf c nt s +φ) LP(x AM [n]y[n]) = x[n] 2 cos(θ φ) + ψ[n]. ξ = σ2 x 4 cos2 (θ φ) + σ 2 ψ Clearly, maximizing ξ leads to the desired tracking, i.e., the PLL.

24 9.3 Costas Loop Derivation of Costas loop for AM signals ˆξ = ( ) 2 LP(x AM [n]y[n]) φ[n + 1] = φ[n] + µ ˆξ φ ˆξ φ = 2LP (x AM[n]y[n]) (LP(x AM[n]y[n])) φ ( ) ˆξ φ = 2LP(x AM[n]y[n])LP x AM [n] y[n] φ φ[n + 1] = φ[n] + 2µLP(x AM [n] cos(2πf c nt s + φ[n])) LP (x AM [n] ( sin(2πf c nt s + φ[n]))).

25 9.3 Costas Loop Costas loop for AM signals

26 9.3 Costas Loop Linear model of Costas loop for AM signals φ ν [n] θ[n] ɛ[n] L(z) c[n] µz 1 φ[n] 1 z 1

27 9.3 Costas Loop Costas loop for QAM signals

28 9.3 Pilot Aided Carrier Acquisition Method We begin with y(t) = e j2π fct x(t) + ν(t), where X x(t) = s[n]h 0 (t nt b ) n=

29 9.3 Pilot Aided Carrier Acquisition Method We begin with y(t) = e j2π fct x(t) + ν(t), where X x(t) = s[n]h 0 (t nt b ) n= In discrete-time, when the samples are at the spacing T b, y[n] = x[n]e j2π fcnt b + ν[n]

30 9.3 Pilot Aided Carrier Acquisition Method We begin with y(t) = e j2π fct x(t) + ν(t), where X x(t) = s[n]h 0 (t nt b ) n= In discrete-time, when the samples are at the spacing T b, y[n] = x[n]e j2π fcnt b + ν[n] Assuming that the transmit symbols are periodic and have a period of N symbols, after a transient interval, x[n] = x[n + N]

31 9.3 Pilot Aided Carrier Acquisition Method We begin with y(t) = e j2π fct x(t) + ν(t), where X x(t) = s[n]h 0 (t nt b ) n= In discrete-time, when the samples are at the spacing T b, y[n] = x[n]e j2π fcnt b + ν[n] Assuming that the transmit symbols are periodic and have a period of N symbols, after a transient interval, x[n] = x[n + N] Next, we form the summation J = N X 2 J e j2π fcnt b n=n 1 y[n + N]y [n] and note that N X 2 n=n 1 x[n] 2

32 9.3 Pilot Aided Carrier Acquisition Method We begin with y(t) = e j2π fct x(t) + ν(t), where X x(t) = s[n]h 0 (t nt b ) n= In discrete-time, when the samples are at the spacing T b, y[n] = x[n]e j2π fcnt b + ν[n] Assuming that the transmit symbols are periodic and have a period of N symbols, after a transient interval, x[n] = x[n + N] Next, we form the summation J = Solving this for f c, we get N X 2 J e j2π fcnt b f c n=n 1 y[n + N]y [n] and note that N X 2 n=n 1 x[n] 2 1 2πNT b (J)

33 9.3 Pilot Aided Carrier Acquisition Method (continued) Lock Range: Correct operation of the above procedure requires that π < (J) < π

34 9.3 Pilot Aided Carrier Acquisition Method (continued) Lock Range: Correct operation of the above procedure requires that π < (J) < π This leads to the lock range f b 2N < f c < f b 2N

35 9.4 Data Aided Carrier Tracking Method received signal demodulation/ carrier and timing recovery equalizer s[n] PLL slicer ŝ[n] detected data e j phase detector loop filter ɛ[n] = ( s[n]ŝ [n]) I{ s[n]ŝ [n]} R{ s[n]ŝ [n]}

36 9.4 Data Aided Carrier Tracking Method (continued) MATLAB Script DDCR.m Tb=0.0001; L=100; Ts=Tb/L; fs=1/ts; fc=100000; Dfc=0; N=8*L; phic=pi/8; sigmav=0.05; alpha=0.5; c=1; b=sign(randn(2000,1)); s=b(1:2:end)+i*b(2:2:end); pt=sr cosp(n,l,alpha); xbbt=conv(expander(s,l),pt); t=[0:length(xbbt)-1] *Ts; xt=real(exp(i*2*pi*fc*t).*xbbt); xr=conv(c,xt); xr=xr+sigmav*randn(size(xr)); t=[0:length(xr)-1] *Ts; y=2*exp(-i*(2*pi*(fc-dfc)*t-phic)).*xr; pr=pt; y=conv(y,pr); y=y(1:l:end);y=y(9:end-8); % Extract the received signal samples % at the correct timing phase phi=zeros(size(y)); s1=zeros(size(y)); mu=0.01; for n=1:length(y)-1 s1(n)=y(n)*exp(-j*phi(n)); s2=sign(real(s1(n)))+j*sign(imag(s1(n))); % Slicer s12=s1(n)*s2 ; e=imag(s12)/real(s12); phi(n+1)=phi(n)+mu*e; end figure(1), plot(phi) figure(2), plot(y, * ), axis( square), hold on, plot(s1(1:end-1), *r ), plot([-2 2],[-2 2],[-2 2],[2-2]), hold off

37 9.4 Data Aided Carrier Tracking Method (continued) φ[n] n

38 9.4 Data Aided Carrier Tracking Method (continued) Imaginary part Real part

Outline. EECS 3213 Fall Sebastian Magierowski York University. Review Passband Modulation. Constellations ASK, FSK, PSK.

Outline. EECS 3213 Fall Sebastian Magierowski York University. Review Passband Modulation. Constellations ASK, FSK, PSK. EECS 3213 Fall 2014 L12: Modulation Sebastian Magierowski York University 1 Outline Review Passband Modulation ASK, FSK, PSK Constellations 2 1 Underlying Idea Attempting to send a sequence of digits through

More information

Digital Communication System

Digital Communication System Digital Communication System Purpose: communicate information at certain rate between geographically separated locations reliably (quality) Important point: rate, quality spectral bandwidth requirement

More information

Signal Processing Techniques for Software Radio

Signal Processing Techniques for Software Radio Signal Processing Techniques for Software Radio Behrouz Farhang-Boroujeny Department of Electrical and Computer Engineering University of Utah c 2007, Behrouz Farhang-Boroujeny, ECE Department, University

More information

Digital Communication System

Digital Communication System Digital Communication System Purpose: communicate information at required rate between geographically separated locations reliably (quality) Important point: rate, quality spectral bandwidth, power requirements

More information

Project I: Phase Tracking and Baud Timing Correction Systems

Project I: Phase Tracking and Baud Timing Correction Systems Project I: Phase Tracking and Baud Timing Correction Systems ECES 631, Prof. John MacLaren Walsh, Ph. D. 1 Purpose In this lab you will encounter the utility of the fundamental Fourier and z-transform

More information

Revision of Lecture 3

Revision of Lecture 3 Revision of Lecture 3 Modulator/demodulator Basic operations of modulation and demodulation Complex notations for modulation and demodulation Carrier recovery and timing recovery This lecture: bits map

More information

Lecture 12. Carrier Phase Synchronization. EE4900/EE6720 Digital Communications

Lecture 12. Carrier Phase Synchronization. EE4900/EE6720 Digital Communications EE49/EE6720: Digital Communications 1 Lecture 12 Carrier Phase Synchronization Block Diagrams of Communication System Digital Communication System 2 Informatio n (sound, video, text, data, ) Transducer

More information

ENSC327 Communication Systems 27: Digital Bandpass Modulation. (Ch. 7) Jie Liang School of Engineering Science Simon Fraser University

ENSC327 Communication Systems 27: Digital Bandpass Modulation. (Ch. 7) Jie Liang School of Engineering Science Simon Fraser University ENSC37 Communication Systems 7: Digital Bandpass Modulation (Ch. 7) Jie Liang School of Engineering Science Simon Fraser University 1 Outline 7.1 Preliminaries 7. Binary Amplitude-Shift Keying (BASK) 7.3

More information

Chapter 6 Carrier and Symbol Synchronization

Chapter 6 Carrier and Symbol Synchronization Wireless Information Transmission System Lab. Chapter 6 Carrier and Symbol Synchronization Institute of Communications Engineering National Sun Yat-sen University Table of Contents 6.1 Signal Parameter

More information

EITG05 Digital Communications

EITG05 Digital Communications Fourier transform EITG05 Digital Communications Lecture 4 Bandwidth of Transmitted Signals Michael Lentmaier Thursday, September 3, 08 X(f )F{x(t)} x(t) e jπ ft dt X Re (f )+jx Im (f ) X(f ) e jϕ(f ) x(t)f

More information

Design of a Transceiver for 3G DECT Physical Layer. - Rohit Budhiraja

Design of a Transceiver for 3G DECT Physical Layer. - Rohit Budhiraja Design of a Transceiver for 3G DECT Physical Layer - Rohit Budhiraja The Big Picture 2G DECT Binary GFSK 1.152Mbps 3G DECT M-ary DPSK 3.456 Mbps DECT - Digital Enhanced Cordless Telecommunications Overview

More information

EEE 461 Communication Systems II Lecture Presentation 2

EEE 461 Communication Systems II Lecture Presentation 2 EEE 461 Communication Systems II Lecture Presentation 2 Aykut HOCANIN Dept. of Electrical and Electronic Engineering 1/15 EEE 461 Communication Systems II 5.1: Multilevel Modulated Bandpass Signaling In

More information

Bit Error Probability of PSK Systems in the Presence of Impulse Noise

Bit Error Probability of PSK Systems in the Presence of Impulse Noise FACTA UNIVERSITATIS (NIŠ) SER.: ELEC. ENERG. vol. 9, April 26, 27-37 Bit Error Probability of PSK Systems in the Presence of Impulse Noise Mile Petrović, Dragoljub Martinović, and Dragana Krstić Abstract:

More information

Revision of Previous Six Lectures

Revision of Previous Six Lectures Revision of Previous Six Lectures Previous six lectures have concentrated on Modem, under ideal AWGN or flat fading channel condition Important issues discussed need to be revised, and they are summarised

More information

Mobile Communication An overview Lesson 03 Introduction to Modulation Methods

Mobile Communication An overview Lesson 03 Introduction to Modulation Methods Mobile Communication An overview Lesson 03 Introduction to Modulation Methods Oxford University Press 2007. All rights reserved. 1 Modulation The process of varying one signal, called carrier, according

More information

Amplitude Frequency Phase

Amplitude Frequency Phase Chapter 4 (part 2) Digital Modulation Techniques Chapter 4 (part 2) Overview Digital Modulation techniques (part 2) Bandpass data transmission Amplitude Shift Keying (ASK) Phase Shift Keying (PSK) Frequency

More information

Spread spectrum. Outline : 1. Baseband 2. DS/BPSK Modulation 3. CDM(A) system 4. Multi-path 5. Exercices. Exercise session 7 : Spread spectrum 1

Spread spectrum. Outline : 1. Baseband 2. DS/BPSK Modulation 3. CDM(A) system 4. Multi-path 5. Exercices. Exercise session 7 : Spread spectrum 1 Spread spectrum Outline : 1. Baseband 2. DS/BPSK Modulation 3. CDM(A) system 4. Multi-path 5. Exercices Exercise session 7 : Spread spectrum 1 1. Baseband +1 b(t) b(t) -1 T b t Spreading +1-1 T c t m(t)

More information

Chapter 7 Multiple Division Techniques for Traffic Channels

Chapter 7 Multiple Division Techniques for Traffic Channels Introduction to Wireless & Mobile Systems Chapter 7 Multiple Division Techniques for Traffic Channels Outline Introduction Concepts and Models for Multiple Divisions Frequency Division Multiple Access

More information

1. Clearly circle one answer for each part.

1. Clearly circle one answer for each part. TB 1-9 / Exam Style Questions 1 EXAM STYLE QUESTIONS Covering Chapters 1-9 of Telecommunication Breakdown 1. Clearly circle one answer for each part. (a) TRUE or FALSE: Absolute bandwidth is never less

More information

QAM Carrier Tracking for Software Defined Radio

QAM Carrier Tracking for Software Defined Radio QAM Carrier Tracking for Software Defined Radio SDR Forum Technical Conference 2008 James Schreuder SCHREUDER ENGINEERING www.schreuder.com.au Outline 1. Introduction 2. Analog versus Digital Phase Locked

More information

Wireless PHY: Modulation and Demodulation

Wireless PHY: Modulation and Demodulation Wireless PHY: Modulation and Demodulation Y. Richard Yang 09/11/2012 Outline Admin and recap Amplitude demodulation Digital modulation 2 Admin Assignment 1 posted 3 Recap: Modulation Objective o Frequency

More information

Digital Communication

Digital Communication Digital Communication (ECE4058) Electronics and Communication Engineering Hanyang University Haewoon Nam Lecture 1 1 Digital Band Pass Modulation echnique Digital and-pass modulation techniques Amplitude-shift

More information

Chapter 4. Part 2(a) Digital Modulation Techniques

Chapter 4. Part 2(a) Digital Modulation Techniques Chapter 4 Part 2(a) Digital Modulation Techniques Overview Digital Modulation techniques Bandpass data transmission Amplitude Shift Keying (ASK) Phase Shift Keying (PSK) Frequency Shift Keying (FSK) Quadrature

More information

Wireless Communication

Wireless Communication Wireless Communication Systems @CS.NCTU Lecture 2: Modulation and Demodulation Reference: Chap. 5 in Goldsmith s book Instructor: Kate Ching-Ju Lin ( 林靖茹 ) 1 Modulation From Wikipedia: The process of varying

More information

Carrier Phase Recovery. EE3723 : Digital Communications. Synchronization. Carrier Phase Recovery. Carrier Phase Synchronization Techniques.

Carrier Phase Recovery. EE3723 : Digital Communications. Synchronization. Carrier Phase Recovery. Carrier Phase Synchronization Techniques. EE3723 : Digital Communications Carrier Phase Recovery Week 10: Synchronization (Frequency, Phase, Symbol and Frame Synchronization) Carrier and Phase Recovery Phase-Locked Loop 20-May-15 Muhammad Ali

More information

German Jordanian University Department of Communication Engineering Digital Communication Systems Lab. CME 313-Lab

German Jordanian University Department of Communication Engineering Digital Communication Systems Lab. CME 313-Lab German Jordanian University Department of Communication Engineering Digital Communication Systems Lab CME 313-Lab Experiment 7 Binary Frequency-shift keying (BPSK) Eng. Anas Al-ashqar Dr. Ala' Khalifeh

More information

EE4601 Communication Systems

EE4601 Communication Systems 4601 Communication Systems Week 8 Binary Modulated Signal Sets Non-Binary Signal Sets 0 c 2011, Georgia Institute of Technology (lect8 1) Binary PSK (BPSK) With BPSK information is transmitted in the carrier

More information

Digital Modulators & Line Codes

Digital Modulators & Line Codes Digital Modulators & Line Codes Professor A. Manikas Imperial College London EE303 - Communication Systems An Overview of Fundamental Prof. A. Manikas (Imperial College) EE303: Dig. Mod. and Line Codes

More information

Lecture #11 Overview. Vector representation of signal waveforms. Two-dimensional signal waveforms. 1 ENGN3226: Digital Communications L#

Lecture #11 Overview. Vector representation of signal waveforms. Two-dimensional signal waveforms. 1 ENGN3226: Digital Communications L# Lecture #11 Overview Vector representation of signal waveforms Two-dimensional signal waveforms 1 ENGN3226: Digital Communications L#11 00101011 Geometric Representation of Signals We shall develop a geometric

More information

Modulation is the process of impressing a low-frequency information signal (baseband signal) onto a higher frequency carrier signal

Modulation is the process of impressing a low-frequency information signal (baseband signal) onto a higher frequency carrier signal Modulation is the process of impressing a low-frequency information signal (baseband signal) onto a higher frequency carrier signal Modulation is a process of mixing a signal with a sinusoid to produce

More information

Lecture 10. Digital Modulation

Lecture 10. Digital Modulation Digital Modulation Lecture 10 On-Off keying (OOK), or amplitude shift keying (ASK) Phase shift keying (PSK), particularly binary PSK (BPSK) Frequency shift keying Typical spectra Modulation/demodulation

More information

Revision of Lecture 2

Revision of Lecture 2 Revision of Lecture 2 Pulse shaping Tx/Rx filter pair Design of Tx/Rx filters (pulse shaping): to achieve zero ISI and to maximise received signal to noise ratio Combined Tx/Rx filters: Nyquist system

More information

Outline. Wireless PHY: Modulation and Demodulation. Recap: Modulation. Admin. Recap: Demod of AM. Page 1. Recap: Amplitude Modulation (AM)

Outline. Wireless PHY: Modulation and Demodulation. Recap: Modulation. Admin. Recap: Demod of AM. Page 1. Recap: Amplitude Modulation (AM) Outline Wireless PHY: Modulation and Demodulation Admin and recap Amplitude demodulation Digital modulation Y. Richard Yang 9// Admin Assignment posted Recap: Modulation Objective o Frequency assignment

More information

Refresher on Digital Communications Channel, Modulation, and Demodulation

Refresher on Digital Communications Channel, Modulation, and Demodulation Refresher on Digital Communications Channel, Modulation, and Demodulation Philippe Ciblat Université Paris-Saclay & Télécom ParisTech Outline Section 1: Digital Communication scheme Section 2: A toy example

More information

I-Q transmission. Lecture 17

I-Q transmission. Lecture 17 I-Q Transmission Lecture 7 I-Q transmission i Sending Digital Data Binary Phase Shift Keying (BPSK): sending binary data over a single frequency band Quadrature Phase Shift Keying (QPSK): sending twice

More information

Digital Modulation Schemes

Digital Modulation Schemes Digital Modulation Schemes 1. In binary data transmission DPSK is preferred to PSK because (a) a coherent carrier is not required to be generated at the receiver (b) for a given energy per bit, the probability

More information

Digital Communication

Digital Communication Digital Communication (ECE4058) Electronics and Communication Engineering Hanyang University Haewoon Nam Lecture 15 1 Quadrature Phase Shift Keying Constellation plot BPSK QPSK 01 11 Bit 0 Bit 1 00 M-ary

More information

Spring 2014 EE 445S Real-Time Digital Signal Processing Laboratory Prof. Evans. Homework #6 Solutions

Spring 2014 EE 445S Real-Time Digital Signal Processing Laboratory Prof. Evans. Homework #6 Solutions Spring 2014 EE 445S Real-Time Digital Signal Processing Laboratory Prof. Evans 6.1 Modified Phase Locked Loop (PLL). Homework #6 Solutions Prolog: The received signal r(t) with carrier frequency f c passes

More information

ECE 3500: Fundamentals of Signals and Systems (Fall 2014) Lab 4: Binary Phase-Shift Keying Modulation and Demodulation

ECE 3500: Fundamentals of Signals and Systems (Fall 2014) Lab 4: Binary Phase-Shift Keying Modulation and Demodulation ECE 3500: Fundamentals of Signals and Systems (Fall 2014) Lab 4: Binary Phase-Shift Keying Modulation and Demodulation Files necessary to complete this assignment: none Deliverables Due: Before your assigned

More information

STUFF HAPPENS. A Naive/Ideal Communication System Flat Fading What if... idealized system. 9: Stuff Happens

STUFF HAPPENS. A Naive/Ideal Communication System Flat Fading What if... idealized system. 9: Stuff Happens STUFF HAPPENS A Naive/Ideal Communication System Flat Fading What if... idealized system Software Receiver Design Johnson/Sethares/Klein / 5 A Naive/Ideal Communication System With a perfect (i.e. gain

More information

= 36 M symbols/second

= 36 M symbols/second Tutorial (3) Solution Problem 1: Suppose a CATV system uses coaxial cable to carry 100 channels, each of 6 MHz bandwidth. Suppose that QAM modulation is used. What is the symbol rate/channel if a four-point

More information

Lab 10: Phase and Hybrid Amplitude/Phase Shift Keying, Carrier Sync

Lab 10: Phase and Hybrid Amplitude/Phase Shift Keying, Carrier Sync ECEN 4652/5002 Communications Lab Spring 2017 04-24-17 P. Mathys Lab 10: Phase and Hybrid Amplitude/Phase Shift Keying, Carrier Sync 1 Introduction A sinusoid like A cos(2πft + θ is characterized by its

More information

UNIT 2 DIGITAL COMMUNICATION DIGITAL COMMUNICATION-Introduction The techniques used to modulate digital information so that it can be transmitted via microwave, satellite or down a cable pair is different

More information

About Homework. The rest parts of the course: focus on popular standards like GSM, WCDMA, etc.

About Homework. The rest parts of the course: focus on popular standards like GSM, WCDMA, etc. About Homework The rest parts of the course: focus on popular standards like GSM, WCDMA, etc. Good news: No complicated mathematics and calculations! Concepts: Understanding and remember! Homework: review

More information

DSP Based Corrections of Analog Components in Digital Receivers

DSP Based Corrections of Analog Components in Digital Receivers fred harris DSP Based Corrections of Analog Components in Digital Receivers IEEE Communications, Signal Processing, and Vehicular Technology Chapters Coastal Los Angeles Section 24-April 2008 It s all

More information

Revision of Wireless Channel

Revision of Wireless Channel Revision of Wireless Channel Quick recap system block diagram CODEC MODEM Wireless Channel Previous three lectures looked into wireless mobile channels To understand mobile communication technologies,

More information

Exercises for chapter 2

Exercises for chapter 2 Exercises for chapter Digital Communications A baseband PAM system uses as receiver filter f(t) a matched filter, f(t) = g( t), having two choices for transmission filter g(t) g a (t) = ( ) { t Π =, t,

More information

CARRIER RECOVERY. Phase Tracking. Frequency Tracking. adaptive components. Squared Difference Phase-locked Loop Costas Loop Decision Directed

CARRIER RECOVERY. Phase Tracking. Frequency Tracking. adaptive components. Squared Difference Phase-locked Loop Costas Loop Decision Directed CARRIER RECOVERY Phase Tracking Squared Difference Phase-locked Loop Costas Loop Decision Directed Frequency Tracking adaptive components Software Receiver Design Johnson/Sethares/Klein 1 / 45 Carrier

More information

DIGITAL COMMUNICATIONS SYSTEMS. MSc in Electronic Technologies and Communications

DIGITAL COMMUNICATIONS SYSTEMS. MSc in Electronic Technologies and Communications DIGITAL COMMUNICATIONS SYSTEMS MSc in Electronic Technologies and Communications Bandpass binary signalling The common techniques of bandpass binary signalling are: - On-off keying (OOK), also known as

More information

University of Manchester. CS3282: Digital Communications 06. Section 9: Multi-level digital modulation & demodulation

University of Manchester. CS3282: Digital Communications 06. Section 9: Multi-level digital modulation & demodulation University of Manchester CS3282: Digital Communications 06 Section 9: Multi-level digital modulation & demodulation 2/05/06 CS3282 Sectn 9 1 9.1. Introduction: So far, mainly binary signalling using ASK,

More information

Digital modulations (part 1)

Digital modulations (part 1) Digital modulations (part 1) Outline : 1. Digital modulations definition. Classic linear modulations.1 Power spectral density. Amplitude digital modulation (ASK).3 Phase digital modulation (PSK).4 Quadrature

More information

Principles of Communications ECS 332

Principles of Communications ECS 332 Principles of Communications ECS 332 Asst. Prof. Dr. Prapun Suksompong prapun@siit.tu.ac.th 5. Angle Modulation Office Hours: BKD, 6th floor of Sirindhralai building Wednesday 4:3-5:3 Friday 4:3-5:3 Example

More information

ECE5713 : Advanced Digital Communications

ECE5713 : Advanced Digital Communications ECE5713 : Advanced Digital Communications Bandpass Modulation MPSK MASK, OOK MFSK 04-May-15 Advanced Digital Communications, Spring-2015, Week-8 1 In-phase and Quadrature (I&Q) Representation Any bandpass

More information

Objectives. Presentation Outline. Digital Modulation Lecture 03

Objectives. Presentation Outline. Digital Modulation Lecture 03 Digital Modulation Lecture 03 Inter-Symbol Interference Power Spectral Density Richard Harris Objectives To be able to discuss Inter-Symbol Interference (ISI), its causes and possible remedies. To be able

More information

Columbia University. Principles of Communication Systems ELEN E3701. Spring Semester May Final Examination

Columbia University. Principles of Communication Systems ELEN E3701. Spring Semester May Final Examination 1 Columbia University Principles of Communication Systems ELEN E3701 Spring Semester- 2006 9 May 2006 Final Examination Length of Examination- 3 hours Answer All Questions Good Luck!!! I. Kalet 2 Problem

More information

IMPLEMENTATION OF GMSK MODULATION SCHEME WITH CHANNEL EQUALIZATION

IMPLEMENTATION OF GMSK MODULATION SCHEME WITH CHANNEL EQUALIZATION IMPLEMENTATION OF GMSK MODULATION SCHEME WITH CHANNEL EQUALIZATION References MX589 GMSK MODEM Application Modem Techniques in Satellite Communication Practical GMSK Data Transmission GMSK MODEM Application

More information

Lecture 5: Simulation of OFDM communication systems

Lecture 5: Simulation of OFDM communication systems Lecture 5: Simulation of OFDM communication systems March 28 April 9 28 Yuping Zhao (Doctor of Science in technology) Professor, Peking University Beijing, China Yuping.zhao@pku.edu.cn Single carrier communcation

More information

Communication Channels

Communication Channels Communication Channels wires (PCB trace or conductor on IC) optical fiber (attenuation 4dB/km) broadcast TV (50 kw transmit) voice telephone line (under -9 dbm or 110 µw) walkie-talkie: 500 mw, 467 MHz

More information

Satellite Navigation Principle and performance of GPS receivers

Satellite Navigation Principle and performance of GPS receivers Satellite Navigation Principle and performance of GPS receivers AE4E08 GPS Block IIF satellite Boeing North America Christian Tiberius Course 2010 2011, lecture 3 Today s topics Introduction basic idea

More information

Digital Modulation. Kate Ching-Ju Lin ( 林靖茹 ) Academia Sinica

Digital Modulation. Kate Ching-Ju Lin ( 林靖茹 ) Academia Sinica Digital Modulation Kate Ching-Ju Lin ( 林靖茹 ) Academia Sinica Map bits to signals Modulation TX bit stream x(t) 1 0 1 1 0 modula7on signal s(t) wireless channel Map signals to bits Demodulation TX RX bit

More information

Adaptive Systems Homework Assignment 3

Adaptive Systems Homework Assignment 3 Signal Processing and Speech Communication Lab Graz University of Technology Adaptive Systems Homework Assignment 3 The analytical part of your homework (your calculation sheets) as well as the MATLAB

More information

Digital Communication Digital Modulation Schemes

Digital Communication Digital Modulation Schemes Digital Communication Digital Modulation Schemes Yabo Li Fall, 2013 Chapter Outline Representation of Digitally Modulated Signals Linear Modulation PAM PSK QAM Multi-Dimensional Signal Non-linear Modulation

More information

ECE 3500: Fundamentals of Signals and Systems (Fall 2015) Lab 4: Binary Phase-Shift Keying Modulation and Demodulation

ECE 3500: Fundamentals of Signals and Systems (Fall 2015) Lab 4: Binary Phase-Shift Keying Modulation and Demodulation ECE 500: Fundamentals of Signals and Systems (Fall 2015) Lab 4: Binary Phase-Shift Keying Modulation and Demodulation Files necessary to complete this assignment: none Deliverables Due: Before Dec. 18th

More information

Hani Mehrpouyan 1, Outline

Hani Mehrpouyan 1, Outline Hani Mehrpouyan 1, Department of Electrical and Computer Engineering, Lecture 20 (Error Probability) February 20 th, 2013 1 Some of the lectures notes here reproduced are taken from course textbooks: Digital

More information

Wireless Communication Fading Modulation

Wireless Communication Fading Modulation EC744 Wireless Communication Fall 2008 Mohamed Essam Khedr Department of Electronics and Communications Wireless Communication Fading Modulation Syllabus Tentatively Week 1 Week 2 Week 3 Week 4 Week 5

More information

EE3723 : Digital Communications

EE3723 : Digital Communications EE3723 : Digital Communications Week 8-9: Bandpass Modulation MPSK MASK, OOK MFSK 04-May-15 Muhammad Ali Jinnah University, Islamabad - Digital Communications - EE3723 1 In-phase and Quadrature (I&Q) Representation

More information

EECS 455 Solution to Problem Set 3

EECS 455 Solution to Problem Set 3 EECS 455 Solution to Problem Set 3. (a) Is it possible to have reliably communication with a data rate of.5mbps using power P 3 Watts with a bandwidth of W MHz and a noise power spectral density of N 8

More information

EXAMINATION FOR THE DEGREE OF B.E. Semester 1 June COMMUNICATIONS IV (ELEC ENG 4035)

EXAMINATION FOR THE DEGREE OF B.E. Semester 1 June COMMUNICATIONS IV (ELEC ENG 4035) EXAMINATION FOR THE DEGREE OF B.E. Semester 1 June 2007 101902 COMMUNICATIONS IV (ELEC ENG 4035) Official Reading Time: Writing Time: Total Duration: 10 mins 120 mins 130 mins Instructions: This is a closed

More information

Satellite Communications: Part 4 Signal Distortions & Errors and their Relation to Communication Channel Specifications. Howard Hausman April 1, 2010

Satellite Communications: Part 4 Signal Distortions & Errors and their Relation to Communication Channel Specifications. Howard Hausman April 1, 2010 Satellite Communications: Part 4 Signal Distortions & Errors and their Relation to Communication Channel Specifications Howard Hausman April 1, 2010 Satellite Communications: Part 4 Signal Distortions

More information

SYSTEM ARCHITECTURE ADVANCED SYSTEM ARCHITECTURE LUO Chapter18.1 and Introduction to OFDM

SYSTEM ARCHITECTURE ADVANCED SYSTEM ARCHITECTURE LUO Chapter18.1 and Introduction to OFDM SYSTEM ARCHITECTURE ADVANCED SYSTEM ARCHITECTURE LUO Chapter18.1 and 18.2 Introduction to OFDM 2013/Fall-Winter Term Monday 12:50 Room# 1-322 or 5F Meeting Room Instructor: Fire Tom Wada, Professor 12/9/2013

More information

Lecture #2. EE 471C / EE 381K-17 Wireless Communication Lab. Professor Robert W. Heath Jr.

Lecture #2. EE 471C / EE 381K-17 Wireless Communication Lab. Professor Robert W. Heath Jr. Lecture #2 EE 471C / EE 381K-17 Wireless Communication Lab Professor Robert W. Heath Jr. Preview of today s lecture u Introduction to digital communication u Components of a digital communication system

More information

Revision of Previous Six Lectures

Revision of Previous Six Lectures Revision of Previous Six Lectures Previous six lectures have concentrated on Modem, under ideal AWGN or flat fading channel condition multiplexing multiple access CODEC MODEM Wireless Channel Important

More information

HW 6 Due: November 3, 10:39 AM (in class)

HW 6 Due: November 3, 10:39 AM (in class) ECS 332: Principles of Communications 2015/1 HW 6 Due: November 3, 10:39 AM (in class) Lecturer: Prapun Suksompong, Ph.D. Instructions (a) ONE part of a question will be graded (5 pt). Of course, you do

More information

1. Clearly circle one answer for each part.

1. Clearly circle one answer for each part. TB 10-15 / Exam Style Questions 1 EXAM STYLE QUESTIONS Covering Chapters 10-15 of Telecommunication Breakdown 1. Clearly circle one answer for each part. (a) TRUE or FALSE: For two rectangular impulse

More information

COSC 3213: Computer Networks I: Chapter 3 Handout #4. Instructor: Dr. Marvin Mandelbaum Department of Computer Science York University Section A

COSC 3213: Computer Networks I: Chapter 3 Handout #4. Instructor: Dr. Marvin Mandelbaum Department of Computer Science York University Section A COSC 3213: Computer Networks I: Chapter 3 Handout #4 Instructor: Dr. Marvin Mandelbaum Department of Computer Science York University Section A Topics: 1. Line Coding: Unipolar, Polar,and Inverted ; Bipolar;

More information

ELT Receiver Architectures and Signal Processing Fall Mandatory homework exercises

ELT Receiver Architectures and Signal Processing Fall Mandatory homework exercises ELT-44006 Receiver Architectures and Signal Processing Fall 2014 1 Mandatory homework exercises - Individual solutions to be returned to Markku Renfors by email or in paper format. - Solutions are expected

More information

Swedish College of Engineering and Technology Rahim Yar Khan

Swedish College of Engineering and Technology Rahim Yar Khan PRACTICAL WORK BOOK Telecommunication Systems and Applications (TL-424) Name: Roll No.: Batch: Semester: Department: Swedish College of Engineering and Technology Rahim Yar Khan Introduction Telecommunication

More information

Chpater 8 Digital Transmission through Bandlimited AWGN Channels

Chpater 8 Digital Transmission through Bandlimited AWGN Channels Chapter 8. Digital Transmission through Bandlimited AWGN Channels - 1-1 st Semester, 008 Chpater 8 Digital Transmission through Bandlimited AWGN Channels Text. [1] J. G. Proakis and M. Salehi, Communication

More information

Keysight Technologies

Keysight Technologies Keysight Technologies Generating Signals Basic CW signal Block diagram Applications Analog Modulation Types of analog modulation Block diagram Applications Digital Modulation Overview of IQ modulation

More information

AC : LOW-COST VECTOR SIGNAL ANALYZER FOR COMMUNICATION EXPERIMENTS

AC : LOW-COST VECTOR SIGNAL ANALYZER FOR COMMUNICATION EXPERIMENTS AC 2007-3034: LOW-COST VECTOR SIGNAL ANALYZER FOR COMMUNICATION EXPERIMENTS Frank Tuffner, University of Wyoming FRANK K. TUFFNER received his B.S. degree (2002) and M.S. degree (2004) in EE from the University

More information

AMPLITUDE SHIFT KEYING

AMPLITUDE SHIFT KEYING Experiment No.1 AMPLITUDE SHIFT KEYING Aim: To generate and demodulate amplitude shift keyed (ASK) signal using MATLAB Theory Generation of ASK Amplitude shift keying - ASK - is a modulation process, which

More information

CARRIER RECOVERY BY RE-MODULATION IN QPSK

CARRIER RECOVERY BY RE-MODULATION IN QPSK CARRIER RECOVERY BY RE-MODULATION IN QPSK PROJECT INDEX : 093 BY: YEGO KIPLETING KENNETH REG. NO. F17/1783/2006 SUPERVISOR: DR. V.K. ODUOL EXAMINER: PROF. ELIJAH MWANGI 24 TH MAY 2011 OBJECTIVES Study

More information

Optical PLL for homodyne detection

Optical PLL for homodyne detection Optical PLL for homodyne detection 7 Capella Court Nepean, ON, Canada K2E 7X1 +1 (613) 224-4700 www.optiwave.com 2009 Optiwave Systems, Inc. Optical BPSK PLL building blocks Signal Generation and Detection

More information

Fund. of Digital Communications Ch. 3: Digital Modulation

Fund. of Digital Communications Ch. 3: Digital Modulation Fund. of Digital Communications Ch. 3: Digital Modulation Klaus Witrisal witrisal@tugraz.at Signal Processing and Speech Communication Laboratory www.spsc.tugraz.at Graz University of Technology November

More information

EXPERIMENT NO. 4 PSK Modulation

EXPERIMENT NO. 4 PSK Modulation DEPARTMENT OF ELECTRICAL & COMPUTER ENGINEERING ECOM 4101 (ECE 4203) COMMUNICATIONS ENGINEERING LAB II SEMESTER 2, 2016/2017 EXPERIMENT NO. 4 PSK Modulation NAME: MATRIC NO: DATE: SECTION: PSK MODULATION

More information

CSE4214 Digital Communications. Bandpass Modulation and Demodulation/Detection. Bandpass Modulation. Page 1

CSE4214 Digital Communications. Bandpass Modulation and Demodulation/Detection. Bandpass Modulation. Page 1 CSE414 Digital Communications Chapter 4 Bandpass Modulation and Demodulation/Detection Bandpass Modulation Page 1 1 Bandpass Modulation n Baseband transmission is conducted at low frequencies n Passband

More information

ECEn 665: Antennas and Propagation for Wireless Communications 131. s(t) = A c [1 + αm(t)] cos (ω c t) (9.27)

ECEn 665: Antennas and Propagation for Wireless Communications 131. s(t) = A c [1 + αm(t)] cos (ω c t) (9.27) ECEn 665: Antennas and Propagation for Wireless Communications 131 9. Modulation Modulation is a way to vary the amplitude and phase of a sinusoidal carrier waveform in order to transmit information. When

More information

Digital communication

Digital communication Chapter 4 Digital communication A digital is a discrete-time binary m : Integers Bin = {0, 1}. To transmit such a it must first be transformed into a analog. The is then transmitted as such or modulated

More information

Jitter Measurements using Phase Noise Techniques

Jitter Measurements using Phase Noise Techniques Jitter Measurements using Phase Noise Techniques Agenda Jitter Review Time-Domain and Frequency-Domain Jitter Measurements Phase Noise Concept and Measurement Techniques Deriving Random and Deterministic

More information

Digital Signal Processing for Communication Systems

Digital Signal Processing for Communication Systems Digital Signal Processing for Communication Systems 1999. 7. 5. Prof. YONG HOON LEE DEPARTMENT OF ELECTRICAL ENGINEERING KAIST Contents 1. DSP for TDMA (IS-136) Mobile Communication 2. DSP for CDMA (IS-95)

More information

EE6604 Personal & Mobile Communications. Week 10. Modulation Techniques

EE6604 Personal & Mobile Communications. Week 10. Modulation Techniques EE6604 Personal & Mobile Communications Week 10 Modulation Techniques 1 Modulation for Wireless Systems To achieve high spectral efficiency, power- and bandwidth-efficient modulation techniques are used

More information

Lecture Note Developing on Simulation of DPSK System in the AWGN Channel

Lecture Note Developing on Simulation of DPSK System in the AWGN Channel Chapter 4 Lecture Note Developing on Simulation of DPSK System in the AWGN Channel Author: Tri Budi Santoso Supervisors: Hiroshi SUZUKI Kazuhiko FUKAWA Book Reference: 1. Digital Communication by Satellite

More information

ECE 201: Introduction to Signal Analysis. Dr. B.-P. Paris Dept. Electrical and Comp. Engineering George Mason University

ECE 201: Introduction to Signal Analysis. Dr. B.-P. Paris Dept. Electrical and Comp. Engineering George Mason University ECE 201: Introduction to Signal Analysis Dr. B.-P. Paris Dept. Electrical and Comp. Engineering George Mason University Last updated: November 29, 2016 2016, B.-P. Paris ECE 201: Intro to Signal Analysis

More information

5 Constellation for Digital Modulation Schemes

5 Constellation for Digital Modulation Schemes 5 Constellation for Digital Modulation Schees 5.1 PAM Definition 5.1. Recall, fro 3.6, that PAM signal wavefors are represented as s (t) = A p(t), 1 M where p(t) is a pulse and A A. 5.2. Clearly, PAM signals

More information

Real and Complex Modulation

Real and Complex Modulation Real and Complex Modulation TIPL 4708 Presented by Matt Guibord Prepared by Matt Guibord 1 What is modulation? Modulation is the act of changing a carrier signal s properties (amplitude, phase, frequency)

More information

Definition Recall, from 6.7, that PAM signal waveforms are represented

Definition Recall, from 6.7, that PAM signal waveforms are represented 6.4 Constellations for Digital Modulation Schees 6.4.1 PAM Definition 6.45. Recall, fro 6.7, that PAM signal wavefors are represented as s (t) = A p(t), 1 M where p(t) is a pulse and A A. 6.46. Clearly,

More information

EECS 452 Practice Midterm Exam Solutions Fall 2014

EECS 452 Practice Midterm Exam Solutions Fall 2014 EECS 452 Practice Midterm Exam Solutions Fall 2014 Name: unique name: Sign the honor code: I have neither given nor received aid on this exam nor observed anyone else doing so. Scores: # Points Section

More information

ECE 201: Introduction to Signal Analysis

ECE 201: Introduction to Signal Analysis ECE 201: Introduction to Signal Analysis Dr. B.-P. Paris Dept. Electrical and Comp. Engineering George Mason University Last updated: November 29, 2016 2016, B.-P. Paris ECE 201: Intro to Signal Analysis

More information

8.1 Geometric Representation of Signal Waveforms

8.1 Geometric Representation of Signal Waveforms Haberlesme Sistemlerine Giris (ELE 361) 30 Ekim 2017 TOBB Ekonomi ve Teknoloji Universitesi, GÃ 1 4 z 2017-18 Dr. A. Melda Yuksel Turgut & Tolga Girici Lecture Notes Chapter 8 Digital Modulation Methods

More information

Mobile & Wireless Networking. Lecture 2: Wireless Transmission (2/2)

Mobile & Wireless Networking. Lecture 2: Wireless Transmission (2/2) 192620010 Mobile & Wireless Networking Lecture 2: Wireless Transmission (2/2) [Schiller, Section 2.6 & 2.7] [Reader Part 1: OFDM: An architecture for the fourth generation] Geert Heijenk Outline of Lecture

More information