EECS 455 Solution to Problem Set 3

Size: px
Start display at page:

Download "EECS 455 Solution to Problem Set 3"

Transcription

1 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 Watts/Hz? Soltuion: According to Shannon s theorem reliable communication is possible if R W log P N W log 3 6 log 3 6 log 4 6 Mbps Thus reliable communication is possible upto the rate of Mbps. So.5Mbps is not possible. (b) A communication system uses BPSK in a (null-to-null) bandwidth of MHz with power P 5 Watts in the presence of white Gaussian noise with two-side power spectral density N 8. An error probability of Q is desired. What data rate is possible? Soltuion: The error probability for BPSK is So the signal to noise ratio must satisfy P e Q E N PT N P R N E N P R N Thus there is enough power to provide reliable communication at a data rate of 5 kbps. In addition, at that data rate the (null-to-null) bandwidth is MHz so there is also enough bandwidth.

2 (c) For the same parameters as part (b) except the error probability requirement was Q what data rate would be possible? Solution: Since the energy requirement has been reduced by a factor of the data rate could potentially increase by a factor of. However, the bandwidth would not allow it. Thus the maximum data rate is still 5kbps.. (a) Simulate a communication system that uses rectangular pulses of amplitude to transmit data. The channel is an additive white Gaussian noise channel. The receiver uses a matched filter followed by a sampler and a decision device. For E b N 8 determine (and plot) the simulated bit error probability. Compare with the theoretical bit error probability. Solution The Matlab code is attached. Simulation P e,b 3 Theory E b /N (db) (b) Repeat the above experiment except with a RC filter with impulse response h t αe αt u t. Use the value α 56 T. Compare the result to part (a).

3 RC Filter P e,b 3 Matched Filter E b /N (db) % This program simulates a rectangular pulse shape signal % in the presence of noise clear; % Simulation Parameters % Tb=; % Bit duration of data Nbcount=input( Number of bit errors counted = ); Nbp=input( Number of bits in a packet= ); Nsb=input( Number of samples per bit= ); 3

4 fmax=nsb/(*tb) N=*Nbp*Nsb; N=N/; fs=*fmax; df=*fmax/n dt=./(df.*n) t=(:n)*dt-dt; Tmax=N*dt f=(:n)*df-df; f=f-n/*df; rb=/tb; fc= % Simulation bandwidth % Simulation samples % Half the number of samples % Sampling Frequency % Frequency spacing % Time spacing % Time samples % Simulation time % Frequency samples % Data rate % Center Frequency % Generate Pulse Shape % xf(:n)=ones(,n)*e-8; xf(:n/)=xf(:n/)+tb*sinc(f(:n/)*tb).*exp(-j*pi*f(:n/)*tb); xf(n/+:n)=conj(fliplr(xf(:n/))); xt=real(ifft(xf)./dt); Peb=zeros(,9); for ml=:9 EbNdB(ml)=ml- EbN=ˆ(EbNdB(ml)/); P=; Eb=P*Tb; N=Eb/EbN; % Received Power % Received Energy % Noise power Nberrors(ml)=; Np=; while Nberrors(ml)<Nbcount b=sign(rand(,nbp)-.5); zf=zeros(,n); for k=:nbp zf=zf+b(k)*exp(-j**pi*f*(k-)*tb); end xf=xf.*zf; 4

5 xt=real(ifft(xf)./dt); % Generate Noise % sigma=sqrt(n*fmax); nt=sigma*randn(,n); % Add signal to noise % rt=xt+nt; % Filter the signal and noise % rf=fft(rt)*dt; yf=rf.*xf; yt=real(ifft(yf)./dt); % Sample the filter output % sampling_time=(:nbp)*nsb+; bhat=sign(yt(sampling_time)); Np=Np+; Nberrors(ml)=Nberrors(ml)+sum(sign(abs(b-bhat))); if (mod(np,) == ) [Np, Nberrors(ml)] end; end Peb(ml)=Nberrors(ml)/(Np*Nbp) petheory(ml)=q(sqrt(*ebn)) 5

6 end hold off semilogy(ebndb,peb) hold on semilogy(ebndb,petheory, r ) 6

7 % This program simulates a rectangular pulse shape signal % in the presence of noise with an RC receiver filter clear; % Simulation Parameters % Tb=; % Bit duration of data alpha=input( RC Filter Parameter= ); Nbcount=input( Number of bit errors counted = ); Nbp=input( Number of bits in a packet= ); Nsb=input( Number of samples per bit= ); fmax=nsb/(*tb) N=*Nbp*Nsb; N=N/; fs=*fmax; df=*fmax/n dt=./(df.*n) t=(:n)*dt-dt; Tmax=N*dt f=(:n)*df-df; f=f-n/*df; rb=/tb; fc= % Simulation bandwidth % Simulation samples % Half the number of samples % Sampling Frequency % Frequency spacing % Time spacing % Time samples % Simulation time % Frequency samples % Data rate % Center Frequency % Generate Pulse Shape % xf(:n)=ones(,n)*e-8; xf(:n/)=xf(:n/)+tb*sinc(f(:n/)*tb).*exp(-j*pi*f(:n/)*tb); xf(n/+:n)=conj(fliplr(xf(:n/))); xt=real(ifft(xf)./dt); Peb=zeros(,9); for ml=:9 EbNdB(ml)=ml- EbN=ˆ(EbNdB(ml)/); 7

8 P=; Eb=P*Tb; N=Eb/EbN; % Received Power % Received Energy % Noise power Nberrors(ml)=; Np=; while Nberrors(ml)<Nbcount b=sign(rand(,nbp)-.5); zf=zeros(,n); for k=:nbp zf=zf+b(k)*exp(-j**pi*f*(k-)*tb); end xf=xf.*zf; xt=real(ifft(xf)./dt); % Generate Noise % sigma=sqrt(n*fmax); nt=sigma*randn(,n); % Add signal to noise % rt=xt+nt; % Filter the signal and noise % rf=fft(rt)*dt; yf=rf.*x3f; yt=real(ifft(yf)./dt); x3f(:n/)=alpha./(alpha+j**pi*f(:n/)); x3f(n/+:n)=conj(fliplr(x3f(:n/))); 8

9 % Sample the filter output % sampling_time=(:nbp)*nsb+; bhat=sign(yt(sampling_time)); Np=Np+; Nberrors(ml)=Nberrors(ml)+sum(sign(abs(b(9:Nbp)-bhat(9:Nbp)))); if (mod(np,) == ) [Np, Nberrors(ml)] end; end %loop for counting errors Peb(ml)=Nberrors(ml)/(Np*(Nbp-8)) end %loop for different SNR hold off semilogy(ebndb,peb) hold on 3. Simulate the communication system shown below. The system uses square-root raised cosine pulses with β 35 data amplitude to transmit data on the cosine and sine branch. Show the data waveform, the transmitted signal in the time domain s t and frequency domain S f. Plot the output of the mixers at the receiver in the frequency domain (show the double frequency terms). Plot the waveform at the output of the receiver filters for a sequence of 8 bits. Make an eye diagram for one of the outputs (use 5 bits for the eye diagram). Assume T and f c 4 for the simulation. Use a maximum frequency for the simulation of 6Hz. Solution: 9

10 lt lt sin sin b c t N l b c lδ t b s t N l b s lδ t H T f H T f cos π f c t s t cos π f c t H R f H R f ˆb c t ˆb s t π f c t π f c t.5 Pulse Shape.5 h(t) time.5 Spectrum H(f) frequency

11 Data Waveform x c (t) time Data Waveform x s (t) time Transmitted Signal s(t) time S(f) frequency

12 3 Output of Mixer at Receiver z c (t) time Z c (f) frequency Recevier Filter Output.5.5 y(t) time

13 Eye Diagram.5.5 y(t) time % This program simulates a raised cosine pulse shape signal % filtered by an raised cosine filter. clear; % Simulation Parameters % Tb=; % Bit duration of data %EbNdB=input( E_b/N_ (db)= ); %EbN=ˆ(EbNdB/); %P=; % Received Power %Eb=P*Tb; % Received Energy %N=Eb/EbN; % Noise power beta=input( Raised Cosine Filter Parameter= ); Nb=input( Number of bits simulated= ); fmax=input( Maximum frequency of simulation= ); N=input( Number of samples = ); N=N/; % Half the number of samples 3

14 fs=*fmax; df=*fmax/n dt=./(df.*n) Nsb=Tb/dt t=(:n)*dt-dt; Tmax=N*dt f=(:n)*df-df; f=f-n/*df; rb=/tb; fc=4 % Sampling Frequency % Frequency spacing % Time spacing % Time samples % Simulation time % Frequency samples % Data rate % Center Frequency % Generate Signals % N=round((-beta)/(*Tb)/df) N=round((+beta)/(*Tb)/df) hf(:n)=zeros(,n); hf(:n)=sqrt(tb*ones(,n)); hf(n:n)=sqrt(.5*tb*(+cos(pi*tb/beta*(f(n:n)-(-beta)/(*tb)))));; hf(n/+:n)=conj(fliplr(hf(:n/))); ht=real(ifft(hf)./dt); figure() subplot(,,), plot(t(:8*nsb)/tb,ht(:8*nsb)); grid axis([ 6*Tb -.5.5]) xlabel( time ); ylabel( h(t) ); title( Pulse Shape ) subplot(,,), plot(f(:n),fftshift(abs(hf(:n)))); axis([-fmax fmax.5]) grid xlabel( frequency ); ylabel( H(f) ); title( Spectrum ) % Generate data for cosine branch % bc=sign(rand(,nb)-.5); 4

15 bcf=zeros(,n); for k=:nb bcf=bcf+bc(k)*exp(-j**pi*f*k*tb); end xcf=hf.*bcf; xct=real(ifft(xcf)./dt); figure() subplot(,,), plot(t/tb,xct); grid axis([ 6 - ]) xlabel( time ); ylabel( x_c(t) ); title( Data Waveform ) % Generate data for sine branch % bs=sign(rand(,nb)-.5); bsf=zeros(,n); for k=:nb bsf=bsf+bs(k)*exp(-j**pi*f*k*tb); end xsf=hf.*bsf; xst=real(ifft(xsf)./dt); subplot(,,), plot(t/tb,xst); grid axis([ 6 - ]) xlabel( time ); ylabel( x_s(t) ); title( Data Waveform ) % Mix the signal to a carrier % st=xct.*cos(*pi*fc*t)-xst.*sin(*pi*fc*t); 5

16 sf=fft(st)*dt; figure(3) subplot(,,), plot(t/tb,st) xlabel( time ) ylabel( s(t) ) grid axis([ 6 - ]) subplot(,,), plot(f,*log(fftshift(abs(sf)))) grid xlabel( frequency ) ylabel( S(f) ) axis([ ]) % Mix the signal back to baseband % zct=*st.*cos(*pi*fc*t); zcf=fft(zct)*dt; zst=-*st.*sin(*pi*fc*t); zsf=fft(zst)*dt; figure(4) hold off subplot(,,), plot(t/tb,zct) axis([ 8-3 3]) xlabel( time ) ylabel( z_c(t) ) subplot(,,), plot(f,*log(fftshift(abs(zsf)))) grid axis([- -4 ]) xlabel( frequency ) ylabel( Z_c(f) ) title( Output of Mixer at Receiver ) % Filter the signal % yf=zcf.*hf; 6

17 yt=real(ifft(yf)./dt); figure(5) subplot(,,), plot(t/tb,yt) grid on axis([ 6 - ]) xlabel( time ) ylabel( y(t) ) title( Recevier Filter Output ) hold off figure(6) %subplot(,,), plot(t(:*nsb+)/tb,yt(:*nsb+)) %grid %yscale=*ceil(max(yt/)); %axis([ - ]) for k=:floor(nb/)- plot(t(:*nsb+)/tb,yt((k*)*nsb+:(k*+)*nsb+)) hold on end xlabel( time ); ylabel( y(t) ); title( Eye Diagram ) grid on hold off 7

Multipath Path. Direct Path

Multipath Path. Direct Path Chapter Fading Channels. Channel Models In this chapter we examine models of fading channels and the performance of coding and modulation for fading channels. Fading occurs due to multiple paths between

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

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

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

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

Wireless Communication Systems Laboratory Lab#1: An introduction to basic digital baseband communication through MATLAB simulation Objective

Wireless Communication Systems Laboratory Lab#1: An introduction to basic digital baseband communication through MATLAB simulation Objective Wireless Communication Systems Laboratory Lab#1: An introduction to basic digital baseband communication through MATLAB simulation Objective The objective is to teach students a basic digital communication

More information

Optimum Bandpass Filter Bandwidth for a Rectangular Pulse

Optimum Bandpass Filter Bandwidth for a Rectangular Pulse M. A. Richards, Optimum Bandpass Filter Bandwidth for a Rectangular Pulse Jul., 015 Optimum Bandpass Filter Bandwidth for a Rectangular Pulse Mark A. Richards July 015 1 Introduction It is well-known that

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

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

CT-516 Advanced Digital Communications

CT-516 Advanced Digital Communications CT-516 Advanced Digital Communications Yash Vasavada Winter 2017 DA-IICT Lecture 17 Channel Coding and Power/Bandwidth Tradeoff 20 th April 2017 Power and Bandwidth Tradeoff (for achieving a particular

More information

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

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

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

QUESTION BANK SUBJECT: DIGITAL COMMUNICATION (15EC61)

QUESTION BANK SUBJECT: DIGITAL COMMUNICATION (15EC61) QUESTION BANK SUBJECT: DIGITAL COMMUNICATION (15EC61) Module 1 1. Explain Digital communication system with a neat block diagram. 2. What are the differences between digital and analog communication systems?

More information

WIRELESS COMMUNICATIONS PRELIMINARIES

WIRELESS COMMUNICATIONS PRELIMINARIES WIRELESS COMMUNICATIONS Preliminaries Radio Environment Modulation Performance PRELIMINARIES db s and dbm s Frequency/Time Relationship Bandwidth, Symbol Rate, and Bit Rate 1 DECIBELS Relative signal strengths

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

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

EE3723 : Digital Communications

EE3723 : Digital Communications EE3723 : Digital Communications Week 11, 12: Inter Symbol Interference (ISI) Nyquist Criteria for ISI Pulse Shaping and Raised-Cosine Filter Eye Pattern Equalization (On Board) 01-Jun-15 Muhammad Ali Jinnah

More information

UNIT TEST I Digital Communication

UNIT TEST I Digital Communication Time: 1 Hour Class: T.E. I & II Max. Marks: 30 Q.1) (a) A compact disc (CD) records audio signals digitally by using PCM. Assume the audio signal B.W. to be 15 khz. (I) Find Nyquist rate. (II) If the Nyquist

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

Digital modulation techniques

Digital modulation techniques Outline Introduction Signal, random variable, random process and spectra Analog modulation Analog to digital conversion Digital transmission through baseband channels Signal space representation Optimal

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

MSK has three important properties. However, the PSD of the MSK only drops by 10log 10 9 = 9.54 db below its midband value at ft b = 0.

MSK has three important properties. However, the PSD of the MSK only drops by 10log 10 9 = 9.54 db below its midband value at ft b = 0. Gaussian MSK MSK has three important properties Constant envelope (why?) Relatively narrow bandwidth Coherent detection performance equivalent to that of QPSK However, the PSD of the MSK only drops by

More information

Assignment 1: Solutions to Problems on Direct Sequence Spread Spectrum

Assignment 1: Solutions to Problems on Direct Sequence Spread Spectrum G. S. Sanyal School of Telecommunications Indian Institute of Technology Kharagpur MOOC: Spread Spectrum Communications & Jamming Assignment 1: Solutions to Problems on Direct Sequence Spread Spectrum

More information

Spring 2017 MIMO Communication Systems Solution of Homework Assignment #5

Spring 2017 MIMO Communication Systems Solution of Homework Assignment #5 Spring 217 MIMO Communication Systems Solution of Homework Assignment #5 Problem 1 (2 points Consider a channel with impulse response h(t α δ(t + α 1 δ(t T 1 + α 3 δ(t T 2. Assume that T 1 1 µsecs and

More information

PULSE SHAPING AND RECEIVE FILTERING

PULSE SHAPING AND RECEIVE FILTERING PULSE SHAPING AND RECEIVE FILTERING Pulse and Pulse Amplitude Modulated Message Spectrum Eye Diagram Nyquist Pulses Matched Filtering Matched, Nyquist Transmit and Receive Filter Combination adaptive components

More information

Lab course Analog Part of a State-of-the-Art Mobile Radio Receiver

Lab course Analog Part of a State-of-the-Art Mobile Radio Receiver Communication Technology Laboratory Wireless Communications Group Prof. Dr. A. Wittneben ETH Zurich, ETF, Sternwartstrasse 7, 8092 Zurich Tel 41 44 632 36 11 Fax 41 44 632 12 09 Lab course Analog Part

More information

2.1 BASIC CONCEPTS Basic Operations on Signals Time Shifting. Figure 2.2 Time shifting of a signal. Time Reversal.

2.1 BASIC CONCEPTS Basic Operations on Signals Time Shifting. Figure 2.2 Time shifting of a signal. Time Reversal. 1 2.1 BASIC CONCEPTS 2.1.1 Basic Operations on Signals Time Shifting. Figure 2.2 Time shifting of a signal. Time Reversal. 2 Time Scaling. Figure 2.4 Time scaling of a signal. 2.1.2 Classification of Signals

More information

Frequency Domain Representation of Signals

Frequency Domain Representation of Signals Frequency Domain Representation of Signals The Discrete Fourier Transform (DFT) of a sampled time domain waveform x n x 0, x 1,..., x 1 is a set of Fourier Coefficients whose samples are 1 n0 X k X0, X

More information

Downloaded from 1

Downloaded from  1 VII SEMESTER FINAL EXAMINATION-2004 Attempt ALL questions. Q. [1] How does Digital communication System differ from Analog systems? Draw functional block diagram of DCS and explain the significance of

More information

COURSE OUTLINE. Introduction Signals and Noise Filtering: LPF1 Constant-Parameter Low Pass Filters Sensors and associated electronics

COURSE OUTLINE. Introduction Signals and Noise Filtering: LPF1 Constant-Parameter Low Pass Filters Sensors and associated electronics Sensors, Signals and Noise COURSE OUTLINE Introduction Signals and Noise Filtering: LPF Constant-Parameter Low Pass Filters Sensors and associated electronics Signal Recovery, 207/208 LPF- Constant-Parameter

More information

Chapter 3: DIFFERENTIAL ENCODING

Chapter 3: DIFFERENTIAL ENCODING Chapter 3: DIFFERENTIAL ENCODING Differential Encoding Eye Patterns Regenerative Receiver Bit Synchronizer Binary to Mary Conversion Huseyin Bilgekul Eeng360 Communication Systems I Department of Electrical

More information

Principles of Communications

Principles of Communications Principles of Communications Meixia Tao Shanghai Jiao Tong University Chapter 8: Digital Modulation Techniques Textbook: Ch 8.4 8.5, Ch 10.1-10.5 1 Topics to be Covered data baseband Digital modulator

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

Fundamentals of Digital Communication

Fundamentals of Digital Communication Fundamentals of Digital Communication Network Infrastructures A.A. 2017/18 Digital communication system Analog Digital Input Signal Analog/ Digital Low Pass Filter Sampler Quantizer Source Encoder Channel

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

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

Nyquist, Shannon and the information carrying capacity of signals

Nyquist, Shannon and the information carrying capacity of signals Nyquist, Shannon and the information carrying capacity of signals Figure 1: The information highway There is whole science called the information theory. As far as a communications engineer is concerned,

More information

Principles of Baseband Digital Data Transmission

Principles of Baseband Digital Data Transmission Principles of Baseband Digital Data Transmission Prof. Wangrok Oh Dept. of Information Communications Eng. Chungnam National University Prof. Wangrok Oh(CNU) / 3 Overview Baseband Digital Data Transmission

More information

EE5713 : Advanced Digital Communications

EE5713 : Advanced Digital Communications EE573 : Advanced Digital Communications Week 4, 5: Inter Symbol Interference (ISI) Nyquist Criteria for ISI Pulse Shaping and Raised-Cosine Filter Eye Pattern Error Performance Degradation (On Board) Demodulation

More information

a) Abasebanddigitalcommunicationsystemhasthetransmitterfilterg(t) thatisshowninthe figure, and a matched filter at the receiver.

a) Abasebanddigitalcommunicationsystemhasthetransmitterfilterg(t) thatisshowninthe figure, and a matched filter at the receiver. DIGITAL COMMUNICATIONS PART A (Time: 60 minutes. Points 4/0) Last Name(s):........................................................ First (Middle) Name:.................................................

More information

Point-to-Point Communications

Point-to-Point Communications Point-to-Point Communications Key Aspects of Communication Voice Mail Tones Alphabet Signals Air Paper Media Language English/Hindi English/Hindi Outline of Point-to-Point Communication 1. Signals basic

More information

zt ( ) = Ae find f(t)=re( zt ( )), g(t)= Im( zt ( )), and r(t), and θ ( t) if z(t)=r(t) e

zt ( ) = Ae find f(t)=re( zt ( )), g(t)= Im( zt ( )), and r(t), and θ ( t) if z(t)=r(t) e Homework # Fundamentals Review Homework or EECS 562 (As needed or plotting you can use Matlab or another sotware tool or your choice) π. Plot x ( t) = 2cos(2π5 t), x ( t) = 2cos(2π5( t.25)), and x ( t)

More information

EIE 441 Advanced Digital communications

EIE 441 Advanced Digital communications EIE 441 Advanced Digital communications MACHED FILER 1. Consider the signal s ( ) shown in Fig. 1. 1 t (a) Determine the impulse response of a filter matched to this signal and sketch it as a function

More information

Modulation and Coding Tradeoffs

Modulation and Coding Tradeoffs 0 Modulation and Coding Tradeoffs Contents 1 1. Design Goals 2. Error Probability Plane 3. Nyquist Minimum Bandwidth 4. Shannon Hartley Capacity Theorem 5. Bandwidth Efficiency Plane 6. Modulation and

More information

TSEK02: Radio Electronics Lecture 2: Modulation (I) Ted Johansson, EKS, ISY

TSEK02: Radio Electronics Lecture 2: Modulation (I) Ted Johansson, EKS, ISY TSEK02: Radio Electronics Lecture 2: Modulation (I) Ted Johansson, EKS, ISY 2 Basic Definitions Time and Frequency db conversion Power and dbm Filter Basics 3 Filter Filter is a component with frequency

More information

EEE482F: Problem Set 1

EEE482F: Problem Set 1 EEE482F: Problem Set 1 1. A digital source emits 1.0 and 0.0V levels with a probability of 0.2 each, and +3.0 and +4.0V levels with a probability of 0.3 each. Evaluate the average information of the source.

More information

Module 4. Signal Representation and Baseband Processing. Version 2 ECE IIT, Kharagpur

Module 4. Signal Representation and Baseband Processing. Version 2 ECE IIT, Kharagpur Module 4 Signal Representation and Baseband Processing Lesson 1 Nyquist Filtering and Inter Symbol Interference After reading this lesson, you will learn about: Power spectrum of a random binary sequence;

More information

Ultra Wideband Transceiver Design

Ultra Wideband Transceiver Design Ultra Wideband Transceiver Design By: Wafula Wanjala George For: Bachelor Of Science In Electrical & Electronic Engineering University Of Nairobi SUPERVISOR: Dr. Vitalice Oduol EXAMINER: Dr. M.K. Gakuru

More information

EE4512 Analog and Digital Communications Chapter 6. Chapter 6 Analog Modulation and Demodulation

EE4512 Analog and Digital Communications Chapter 6. Chapter 6 Analog Modulation and Demodulation Chapter 6 Analog Modulation and Demodulation Chapter 6 Analog Modulation and Demodulation Amplitude Modulation Pages 306-309 309 The analytical signal for double sideband, large carrier amplitude modulation

More information

Transmission Fundamentals

Transmission Fundamentals College of Computer & Information Science Wireless Networks Northeastern University Lecture 1 Transmission Fundamentals Signals Data rate and bandwidth Nyquist sampling theorem Shannon capacity theorem

More information

APPENDIX A TEST PLOTS. (Model: 15Z970)

APPENDIX A TEST PLOTS. (Model: 15Z970) APPENDIX A APPENDIX A TEST PLOTS (Model: 15Z970) APPENDIX A-Page 1 of 36 TABLE OF CONTENTS A.1 6dB BANDWIDTH MEASUREMENT... 2 A.1.1 6dB Bandwidth Result... 2 A.1.2 Measurement Plots... 3 A.2 MAXIMUM PEAK

More information

OFDM TX Shaping for 802.3bn Leo Montreuil

OFDM TX Shaping for 802.3bn Leo Montreuil OFDM TX Shaping for 802.3bn Leo Montreuil Jan 2013 Recommendations TX window is specified as N t samples in taper region No need for different set of Alpha for 4K and 8K FFT. Avoid confusion for calculation

More information

EE 355 / GP 265 Homework 2 Solutions Winter

EE 355 / GP 265 Homework 2 Solutions Winter EE 355 / GP 265 Homework 2 Solutions Winter 217-218 1. Chirp Compression (a) The bandwidth measured at 3 db down from the peak of the chirp spectrum is 9.5 MHz, which is reasonably close to the theoretical

More information

Digital Signal Processing PW1 Signals, Correlation functions and Spectra

Digital Signal Processing PW1 Signals, Correlation functions and Spectra Digital Signal Processing PW1 Signals, Correlation functions and Spectra Nathalie Thomas Master SATCOM 018 019 1 Introduction The objectives of this rst practical work are the following ones : 1. to be

More information

Chapter 3 Data Transmission COSC 3213 Summer 2003

Chapter 3 Data Transmission COSC 3213 Summer 2003 Chapter 3 Data Transmission COSC 3213 Summer 2003 Courtesy of Prof. Amir Asif Definitions 1. Recall that the lowest layer in OSI is the physical layer. The physical layer deals with the transfer of raw

More information

3/26/18. Lecture 3 EITN STRUCTURE OF A WIRELESS COMMUNICATION LINK

3/26/18. Lecture 3 EITN STRUCTURE OF A WIRELESS COMMUNICATION LINK Lecture 3 EITN75 208 STRUCTURE OF A WIRELESS COMMUNICATION LINK 2 A simple structure Speech Data A/D Speech encoder Encrypt. Chann. encoding Modulation Key Speech D/A Speech decoder Decrypt. Chann. decoding

More information

Lab 3 SPECTRUM ANALYSIS OF THE PERIODIC RECTANGULAR AND TRIANGULAR SIGNALS 3.A. OBJECTIVES 3.B. THEORY

Lab 3 SPECTRUM ANALYSIS OF THE PERIODIC RECTANGULAR AND TRIANGULAR SIGNALS 3.A. OBJECTIVES 3.B. THEORY Lab 3 SPECRUM ANALYSIS OF HE PERIODIC RECANGULAR AND RIANGULAR SIGNALS 3.A. OBJECIVES. he spectrum of the periodic rectangular and triangular signals.. he rejection of some harmonics in the spectrum of

More information

QUESTION BANK (VI SEM ECE) (DIGITAL COMMUNICATION)

QUESTION BANK (VI SEM ECE) (DIGITAL COMMUNICATION) QUESTION BANK (VI SEM ECE) (DIGITAL COMMUNICATION) UNIT-I: PCM & Delta modulation system Q.1 Explain the difference between cross talk & intersymbol interference. Q.2 What is Quantization error? How does

More information

Multi-carrier Modulation and OFDM

Multi-carrier Modulation and OFDM 3/28/2 Multi-carrier Modulation and OFDM Prof. Luiz DaSilva dasilval@tcd.ie +353 896-366 Multi-carrier systems: basic idea Typical mobile radio channel is a fading channel that is flat or frequency selective

More information

Computer Networks - Xarxes de Computadors

Computer Networks - Xarxes de Computadors Computer Networks - Xarxes de Computadors Outline Course Syllabus Unit 1: Introduction Unit 2. IP Networks Unit 3. Point to Point Protocols -TCP Unit 4. Local Area Networks, LANs 1 Outline Introduction

More information

Channel. Muhammad Ali Jinnah University, Islamabad Campus, Pakistan. Multi-Path Fading. Dr. Noor M Khan EE, MAJU

Channel. Muhammad Ali Jinnah University, Islamabad Campus, Pakistan. Multi-Path Fading. Dr. Noor M Khan EE, MAJU Instructor: Prof. Dr. Noor M. Khan Department of Electronic Engineering, Muhammad Ali Jinnah University, Islamabad Campus, Islamabad, PAKISTAN Ph: +9 (51) 111-878787, Ext. 19 (Office), 186 (Lab) Fax: +9

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

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

Part A: Spread Spectrum Systems

Part A: Spread Spectrum Systems 1 Telecommunication Systems and Applications (TL - 424) Part A: Spread Spectrum Systems Dr. ir. Muhammad Nasir KHAN Department of Electrical Engineering Swedish College of Engineering and Technology March

More information

Principles of Communications

Principles of Communications Principles of Communications Weiyao Lin Shanghai Jiao Tong University Chapter 8: Digital Modulation Techniques Textbook: Ch 8.4.8.7 2009/2010 Meixia Tao @ SJTU 1 Topics to be Covered data baseband Digital

More information

Problem Sheet 1 Probability, random processes, and noise

Problem Sheet 1 Probability, random processes, and noise Problem Sheet 1 Probability, random processes, and noise 1. If F X (x) is the distribution function of a random variable X and x 1 x 2, show that F X (x 1 ) F X (x 2 ). 2. Use the definition of the cumulative

More information

TSEK02: Radio Electronics Lecture 2: Modulation (I) Ted Johansson, EKS, ISY

TSEK02: Radio Electronics Lecture 2: Modulation (I) Ted Johansson, EKS, ISY TSEK02: Radio Electronics Lecture 2: Modulation (I) Ted Johansson, EKS, ISY An Overview of Modulation Techniques: chapter 3.1 3.3.1 2 Introduction (3.1) Analog Modulation Amplitude Modulation Phase and

More information

Chapter 3 Digital Transmission Fundamentals

Chapter 3 Digital Transmission Fundamentals Chapter 3 Digital Transmission Fundamentals Characterization of Communication Channels Fundamental Limits in Digital Transmission CSE 323, Winter 200 Instructor: Foroohar Foroozan Chapter 3 Digital Transmission

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

= 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

System Identification & Parameter Estimation

System Identification & Parameter Estimation System Identification & Parameter Estimation Wb2301: SIPE lecture 4 Perturbation signal design Alfred C. Schouten, Dept. of Biomechanical Engineering (BMechE), Fac. 3mE 3/9/2010 Delft University of Technology

More information

Data Transmission. ITS323: Introduction to Data Communications. Sirindhorn International Institute of Technology Thammasat University ITS323

Data Transmission. ITS323: Introduction to Data Communications. Sirindhorn International Institute of Technology Thammasat University ITS323 ITS323: Introduction to Data Communications Sirindhorn International Institute of Technology Thammasat University Prepared by Steven Gordon on 23 May 2012 ITS323Y12S1L03, Steve/Courses/2012/s1/its323/lectures/transmission.tex,

More information

Problem Sheets: Communication Systems

Problem Sheets: Communication Systems Problem Sheets: Communication Systems Professor A. Manikas Chair of Communications and Array Processing Department of Electrical & Electronic Engineering Imperial College London v.11 1 Topic: Introductory

More information

Symbol Shaping for Barker Spread Wi-Fi Communications

Symbol Shaping for Barker Spread Wi-Fi Communications Symbol Shaping for Barker Spread Wi-Fi Communications Tanim M. Taher, Graduate Student Member, IEEE, Matthew J. Misurac, Student Member, IEEE, Donald R. Ucci, Senior Member, IEEE, Joseph L. LoCicero, Senior

More information

SIGNALS AND SYSTEMS LABORATORY 13: Digital Communication

SIGNALS AND SYSTEMS LABORATORY 13: Digital Communication SIGNALS AND SYSTEMS LABORATORY 13: Digital Communication INTRODUCTION Digital Communication refers to the transmission of binary, or digital, information over analog channels. In this laboratory you will

More information

LOOKING AT DATA SIGNALS

LOOKING AT DATA SIGNALS LOOKING AT DATA SIGNALS We diplay data signals graphically in many ways, ranging from textbook illustrations to test equipment screens. This note helps you integrate those views and to see how some modulation

More information

Objectives. Presentation Outline. Digital Modulation Revision

Objectives. Presentation Outline. Digital Modulation Revision Digital Modulation Revision Professor Richard Harris Objectives To identify the key points from the lecture material presented in the Digital Modulation section of this paper. What is in the examination

More information

Signals A Preliminary Discussion EE442 Analog & Digital Communication Systems Lecture 2

Signals A Preliminary Discussion EE442 Analog & Digital Communication Systems Lecture 2 Signals A Preliminary Discussion EE442 Analog & Digital Communication Systems Lecture 2 The Fourier transform of single pulse is the sinc function. EE 442 Signal Preliminaries 1 Communication Systems and

More information

Time and Frequency Domain Windowing of LFM Pulses Mark A. Richards

Time and Frequency Domain Windowing of LFM Pulses Mark A. Richards Time and Frequency Domain Mark A. Richards September 29, 26 1 Frequency Domain Windowing of LFM Waveforms in Fundamentals of Radar Signal Processing Section 4.7.1 of [1] discusses the reduction of time

More information

Part A: Spread Spectrum Systems

Part A: Spread Spectrum Systems 1 Telecommunication Systems and Applications (TL - 424) Part A: Spread Spectrum Systems Dr. ir. Muhammad Nasir KHAN Department of Electrical Engineering Swedish College of Engineering and Technology February

More information

Multi-Path Fading Channel

Multi-Path Fading Channel Instructor: Prof. Dr. Noor M. Khan Department of Electronic Engineering, Muhammad Ali Jinnah University, Islamabad Campus, Islamabad, PAKISTAN Ph: +9 (51) 111-878787, Ext. 19 (Office), 186 (Lab) Fax: +9

More information

Islamic University of Gaza. Faculty of Engineering Electrical Engineering Department Spring-2011

Islamic University of Gaza. Faculty of Engineering Electrical Engineering Department Spring-2011 Islamic University of Gaza Faculty of Engineering Electrical Engineering Department Spring-2011 DSP Laboratory (EELE 4110) Lab#4 Sampling and Quantization OBJECTIVES: When you have completed this assignment,

More information

Computer Networks. Practice Set I. Dr. Hussein Al-Bahadili

Computer Networks. Practice Set I. Dr. Hussein Al-Bahadili بسم االله الرحمن الرحيم Computer Networks Practice Set I Dr. Hussein Al-Bahadili (1/11) Q. Circle the right answer. 1. Before data can be transmitted, they must be transformed to. (a) Periodic signals

More information

Communication Theory

Communication Theory Communication Theory Adnan Aziz Abstract We review the basic elements of communications systems, our goal being to motivate our study of filter implementation in VLSI. Specifically, we review some basic

More information

EELE503. Modern filter design. Filter Design - Introduction

EELE503. Modern filter design. Filter Design - Introduction EELE503 Modern filter design Filter Design - Introduction A filter will modify the magnitude or phase of a signal to produce a desired frequency response or time response. One way to classify ideal filters

More information

B.Tech II Year II Semester (R13) Supplementary Examinations May/June 2017 ANALOG COMMUNICATION SYSTEMS (Electronics and Communication Engineering)

B.Tech II Year II Semester (R13) Supplementary Examinations May/June 2017 ANALOG COMMUNICATION SYSTEMS (Electronics and Communication Engineering) Code: 13A04404 R13 B.Tech II Year II Semester (R13) Supplementary Examinations May/June 2017 ANALOG COMMUNICATION SYSTEMS (Electronics and Communication Engineering) Time: 3 hours Max. Marks: 70 PART A

More information

S.E. (Electronics/Electronics and Telecommunication Engg.) (Second Semester) EXAMINATION, 2014 COMMUNICATION THEORY (2008 PATTERN)

S.E. (Electronics/Electronics and Telecommunication Engg.) (Second Semester) EXAMINATION, 2014 COMMUNICATION THEORY (2008 PATTERN) Total No. of Questions 12] [Total No. of Printed Pages 7 Seat No. [4657]-49 S.E. (Electronics/Electronics and Telecommunication Engg.) (Second Semester) EXAMINATION, 2014 COMMUNICATION THEORY (2008 PATTERN)

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

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

Data Communications & Computer Networks

Data Communications & Computer Networks Data Communications & Computer Networks Chapter 3 Data Transmission Fall 2008 Agenda Terminology and basic concepts Analog and Digital Data Transmission Transmission impairments Channel capacity Home Exercises

More information

Exploring QAM using LabView Simulation *

Exploring QAM using LabView Simulation * OpenStax-CNX module: m14499 1 Exploring QAM using LabView Simulation * Robert Kubichek This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 2.0 1 Exploring

More information

Annex. 1.3 Measuring information

Annex. 1.3 Measuring information Annex This appendix discusses the interrelated concepts of information, information source, channel capacity, and bandwidth. The first three concepts relate to a digital channel, while bandwidth concerns

More information

Synthesis: From Frequency to Time-Domain

Synthesis: From Frequency to Time-Domain Synthesis: From Frequency to Time-Domain I Synthesis is a straightforward process; it is a lot like following a recipe. I Ingredients are given by the spectrum X (f )={(X 0, 0), (X 1, f 1 ), (X 1, f 1),...,

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

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

6.02 Practice Problems: Modulation & Demodulation

6.02 Practice Problems: Modulation & Demodulation 1 of 12 6.02 Practice Problems: Modulation & Demodulation Problem 1. Here's our "standard" modulation-demodulation system diagram: at the transmitter, signal x[n] is modulated by signal mod[n] and the

More information

Problems from the 3 rd edition

Problems from the 3 rd edition (2.1-1) Find the energies of the signals: a) sin t, 0 t π b) sin t, 0 t π c) 2 sin t, 0 t π d) sin (t-2π), 2π t 4π Problems from the 3 rd edition Comment on the effect on energy of sign change, time shifting

More information

Complex Sounds. Reading: Yost Ch. 4

Complex Sounds. Reading: Yost Ch. 4 Complex Sounds Reading: Yost Ch. 4 Natural Sounds Most sounds in our everyday lives are not simple sinusoidal sounds, but are complex sounds, consisting of a sum of many sinusoids. The amplitude and frequency

More information

Quadrature amplitude modula.on

Quadrature amplitude modula.on Quadrature amplitude modula.on message ( waveform) Today s topics concern with the and de transminer Watcharapan Suwansan.suk Sampler Quan.zer Source Modulator analog sequence symbol sequence interface

More information