Homework 5 Solutions. Problem 1

Size: px
Start display at page:

Download "Homework 5 Solutions. Problem 1"

Transcription

1 Homework 5 Solutions Problem 1 (a Closed form Chernoff upper-bound for the uncoded 4-QAM average symbol error rate over Rayleigh flat fading MISO channel with = 4, assuming transmit-mrc The vector channel for the MISO channel... h = [h 1 h h MT ] The signal at the receiver... y = Es hws + n The weight vector... w = h H h The SNR at the receiver... η = h ρ (ρ = E s /N o ( With ML detection, symbol error probability... P e N e Q 4-QAM with E s = 1... N e =, d min = Symbol error probability... P e Q ( η Chernoff bound for the Q function... Q (x e x Chernoff bound on symbol error probability P e e η ηd min E{P e } E{e h ρ } { } E e s H w 1 F = (1 + s M (Homework 4 T M R E{P e } ( 1 + ρ 4 E{P e } 5 ρ 4 (At high SNR, diversity order 4 (b upper-bound on symbol error rate for a SIMO channel with M R = 4 E{P e } 5 ρ 4 When transmitter has channel knowledge, it can focuss the energy in the only useful direction and it extracts both the array and diversity gains. The performance obtained by MISO (with channel knowledge and SIMO is same in terms of both array and diversity gains. When there is no channel knowledge at the transmitter, the system behaves as a SISO system unless we employ some precoding (space-time codes. With precoding at the transmitter we will be able to extract the diversity gain but not the maximum possible array gain. 1

2 (c Ergodic capacity when the channel is known to the transmitter { r ( } C MIMO = E log 1 + σi γ opt ρ i For transmit-mrc MISO channel, i=1 r = 1, h = σ 1, γ opt 1 = C MISO = E { log ( 1+ h ρ } Transmit-MRC is an ergodic capacity optimal strategy. As shown above, the optimum strategy for MIMO to achieve capacity with channel knowledge at transmitter is exactly transmit- MRC when the number of receive antennas is 1. Problem P.101, Paulraj book has a table summarizing achievable array and diversity gains under different configurations (a i. M R = 4, = 4, channel known to transmitter and receiver Dominant eigenmode transmission Array Gain E{λ max } = (Analytical expression in [1]. Diversity Gain M R = 16 ii. M R = 1, =, channel unknown to transmitter, known to receiver If we transmit the same symbol on both antennas without space-time coding then we will not be able to achieve array or diversity gains (effectively SISO. With Alamouti coding at transmitter Array Gain 1 Diversity Gain iii. M R = 1, =, channel known to transmitter and receiver Transmit MRC Array Gain Diversity Gain iv. M R = 4, =, channel unknown to transmitter, known to receiver With Alamouti coding at transmitter Array Gain 4 Diversity Gain 8 (b Ergodic capacity when the channel is known to the transmitter { r ( } C MIMO = E log 1 + σi γ opt ρ i i=1

3 Dominant eigenmode transmission (DET r = 1 γ opt 1 = σ1 = maximum eigenvalue of HH H H F r σ1 H F { ( C DET = E log 1 + σ 1γ opt 1 if γ opt 1 = C DET = E { log ( 1 + σ 1ρ } Dominant eigenmode transmission is optimum iff the waterfilling procedure allocates all the power to the dominant channel. Waterfilling allocates equal power to all modes at high SNRs. So ergodic capacity won t be optimum if we employ DET at high SNRs. There will in general be at least be a few other good channels (from waterfilling at medium SNRs. So even here DET may not be optimum. Very low SNR region might make a DET scheme an optimum one. Rank 1 channel (both SIMO and MISO, with CSI at transmitter is another example where DET is an ergodic optimum scheme. ρ } Problem 3 (a The channel matrix H: ( P e N e Q ηd min [ h11 h H = 1 h 1 h ] BPSK with E s = 1... N e = 1, d min = The SNR at the receiver... η = H F ρ (ρ = E s /N o Chernoff bound on symbol error probability... P e e H F ρ From the above bound it is clear that the Frobenius norm of the channel matrix (at a fixed ρ determines the symbol error probability. The channel with 4 receiving antennas and transmitting antennas H = h 11 h 1 h 1 h h 31 h 3 h 41 h 4 Switching strategy: Calculate the norm of all 4 row vectors of H and Select the rows with maximum norm. 3

4 (b Example to illustrate the improvement in performance with selection diversity combined with Alamouti coding for a x MIMO system Alamouti (x, Alamouti with Selection ( out of 4 and MRC (1x8 Alamouti Alamouti with Selection MRC Probability of Symbol Error SNR (db Figure 1: Performance improves with selection Alamouti The Alamouti selection (AS scheme provides a diversity order of 8, the diversity order of regular Alamouti is 4. The change in slope (a direct measure of diversity can be noticed in the curves. Notice the same slope of AS and MRC, indicating that both schemes achieve same diversity order (8. The main difference between SIMO with 8 antennas and AS is the array gain. MATLAB code: % Variables % Mt, number of transmitting antennas % Mr, number of receiving antennas % Mrsel, number of antennas at receiver out of which are selected % Iter, number of trials % Hsel, 4x channel, a x channel is selected from the 4x % Hala, x matrix used for Alamouti implementation % hmrc, 1x8 channel for MRC (SIMO % PeAla, probability of error in Alamouti scheme % Pesel, probability of error with selection and Alamouti scheme % PeMRC, probability of error with MRC in the SIMO system 4

5 clc; close all; clear all; Mt = ; Mr = ; Mrsel = 4; SNRdB = [0:1:1]; SNR = 10.ˆ(SNRdB/10; PeAla = zeros(1,length(snr; PeSel = zeros(1,length(snr; PeMRC = zeros(1,length(snr; Iter = 10000; for ite = 1:Iter Hsel = (randn(mrsel,mt+j*randn(mrsel,mt/sqrt(; Hala = (randn(mr,mt+j*randn(mr,mt/sqrt(; hmrc = (randn(mrsel*mt,1+j*randn(mrsel*mt,1/sqrt(; for k = 1:length(SNR PeAla(k = PeAla(k +Q(sqrt(SNR(k*norm(Hala, fro ˆ; PeMRC(k = PeMRC(k + Q(sqrt(*SNR(k*norm(hMRCˆ; nh = flipud(sort(abs(hsel(:,1.ˆ+abs(hsel(:,.ˆ; nh = sum(nh(1:,:; PeSel(k = PeSel(k+ Q(sqrt(SNR(k*nH; end end PeAla = PeAla/Iter; PeMRC = PeMRC/Iter; PeSel = PeSel/Iter; semilogy(snrdb,peala, b,snrdb,pesel, r - *,SNRdB,PeMRC, k - o ; legend( Alamouti, Alamouti with Selection, MRC ; xlabel( SNR (db ; ylabel( Probability of Symbol Error ; title( Alamouti (x,alamouti with Selection ( out of 4 and MRC(1x8 ; grid; References [1] P.A Dighe, R.K. Mallik, and S.S. Jamuar, Analysis of transmit-receive diversity in rayleigh fading, IEEE Trans. Commun, vol. 51, no. 4, pp , Apr

Exploiting Partial Channel Knowledge at the Transmitter in MISO and MIMO Wireless

Exploiting Partial Channel Knowledge at the Transmitter in MISO and MIMO Wireless Exploiting Partial Channel Knowledge at the Transmitter in MISO and MIMO Wireless SPAWC 2003 Rome, Italy June 18, 2003 E. Yoon, M. Vu and Arogyaswami Paulraj Stanford University Page 1 Outline Introduction

More information

Lecture 5: Antenna Diversity and MIMO Capacity Theoretical Foundations of Wireless Communications 1. Overview. CommTh/EES/KTH

Lecture 5: Antenna Diversity and MIMO Capacity Theoretical Foundations of Wireless Communications 1. Overview. CommTh/EES/KTH : Antenna Diversity and Theoretical Foundations of Wireless Communications Wednesday, May 4, 206 9:00-2:00, Conference Room SIP Textbook: D. Tse and P. Viswanath, Fundamentals of Wireless Communication

More information

Single-User MIMO systems: Introduction, capacity results, and MIMO beamforming

Single-User MIMO systems: Introduction, capacity results, and MIMO beamforming Single-User MIMO systems: Introduction, capacity results, and MIMO beamforming Master Universitario en Ingeniería de Telecomunicación I. Santamaría Universidad de Cantabria Contents Introduction Multiplexing,

More information

Lecture 7 MIMO Communica2ons

Lecture 7 MIMO Communica2ons Wireless Communications Lecture 7 MIMO Communica2ons Prof. Chun-Hung Liu Dept. of Electrical and Computer Engineering National Chiao Tung University Fall 2014 1 Outline MIMO Communications (Chapter 10

More information

Title. Author(s)Tsai, Shang-Ho. Issue Date Doc URL. Type. Note. File Information. Equal Gain Beamforming in Rayleigh Fading Channels

Title. Author(s)Tsai, Shang-Ho. Issue Date Doc URL. Type. Note. File Information. Equal Gain Beamforming in Rayleigh Fading Channels Title Equal Gain Beamforming in Rayleigh Fading Channels Author(s)Tsai, Shang-Ho Proceedings : APSIPA ASC 29 : Asia-Pacific Signal Citationand Conference: 688-691 Issue Date 29-1-4 Doc URL http://hdl.handle.net/2115/39789

More information

Lecture 9: Diversity-Multiplexing Tradeoff Theoretical Foundations of Wireless Communications 1. Overview. Ragnar Thobaben CommTh/EES/KTH

Lecture 9: Diversity-Multiplexing Tradeoff Theoretical Foundations of Wireless Communications 1. Overview. Ragnar Thobaben CommTh/EES/KTH : Diversity-Multiplexing Tradeoff Theoretical Foundations of Wireless Communications 1 Rayleigh Wednesday, June 1, 2016 09:15-12:00, SIP 1 Textbook: D. Tse and P. Viswanath, Fundamentals of Wireless Communication

More information

I + HH H N 0 M T H = UΣV H = [U 1 U 2 ] 0 0 E S. X if X 0 0 if X < 0 (X) + = = M T 1 + N 0. r p + 1

I + HH H N 0 M T H = UΣV H = [U 1 U 2 ] 0 0 E S. X if X 0 0 if X < 0 (X) + = = M T 1 + N 0. r p + 1 Homework 4 Problem Capacty wth CSI only at Recever: C = log det I + E )) s HH H N M T R SS = I) SVD of the Channel Matrx: H = UΣV H = [U 1 U ] [ Σr ] [V 1 V ] H Capacty wth CSI at both transmtter and

More information

Lecture 9: Diversity-Multiplexing Tradeoff Theoretical Foundations of Wireless Communications 1

Lecture 9: Diversity-Multiplexing Tradeoff Theoretical Foundations of Wireless Communications 1 : Diversity-Multiplexing Tradeoff Theoretical Foundations of Wireless Communications 1 Rayleigh Friday, May 25, 2018 09:00-11:30, Kansliet 1 Textbook: D. Tse and P. Viswanath, Fundamentals of Wireless

More information

Capacity of multiple-input multiple-output (MIMO) systems in wireless communications

Capacity of multiple-input multiple-output (MIMO) systems in wireless communications 15/11/02 Capacity of multiple-input multiple-output (MIMO) systems in wireless communications Bengt Holter Department of Telecommunications Norwegian University of Science and Technology 1 Outline 15/11/02

More information

ELEC E7210: Communication Theory. Lecture 10: MIMO systems

ELEC E7210: Communication Theory. Lecture 10: MIMO systems ELEC E7210: Communication Theory Lecture 10: MIMO systems Matrix Definitions, Operations, and Properties (1) NxM matrix a rectangular array of elements a A. an 11 1....... a a 1M. NM B D C E ermitian transpose

More information

Schur-convexity of the Symbol Error Rate in Correlated MIMO Systems with Precoding and Space-time Coding

Schur-convexity of the Symbol Error Rate in Correlated MIMO Systems with Precoding and Space-time Coding Schur-convexity of the Symbol Error Rate in Correlated MIMO Systems with Precoding and Space-time Coding RadioVetenskap och Kommunikation (RVK 08) Proceedings of the twentieth Nordic Conference on Radio

More information

A Design of High-Rate Space-Frequency Codes for MIMO-OFDM Systems

A Design of High-Rate Space-Frequency Codes for MIMO-OFDM Systems A Design of High-Rate Space-Frequency Codes for MIMO-OFDM Systems Wei Zhang, Xiang-Gen Xia and P. C. Ching xxia@ee.udel.edu EE Dept., The Chinese University of Hong Kong ECE Dept., University of Delaware

More information

2318 IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 54, NO. 6, JUNE Mai Vu, Student Member, IEEE, and Arogyaswami Paulraj, Fellow, IEEE

2318 IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 54, NO. 6, JUNE Mai Vu, Student Member, IEEE, and Arogyaswami Paulraj, Fellow, IEEE 2318 IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 54, NO. 6, JUNE 2006 Optimal Linear Precoders for MIMO Wireless Correlated Channels With Nonzero Mean in Space Time Coded Systems Mai Vu, Student Member,

More information

EE 5407 Part II: Spatial Based Wireless Communications

EE 5407 Part II: Spatial Based Wireless Communications EE 5407 Part II: Spatial Based Wireless Communications Instructor: Prof. Rui Zhang E-mail: rzhang@i2r.a-star.edu.sg Website: http://www.ece.nus.edu.sg/stfpage/elezhang/ Lecture IV: MIMO Systems March 21,

More information

Limited Feedback in Wireless Communication Systems

Limited Feedback in Wireless Communication Systems Limited Feedback in Wireless Communication Systems - Summary of An Overview of Limited Feedback in Wireless Communication Systems Gwanmo Ku May 14, 17, and 21, 2013 Outline Transmitter Ant. 1 Channel N

More information

Rate-Optimum Beamforming Transmission in MIMO Rician Fading Channels

Rate-Optimum Beamforming Transmission in MIMO Rician Fading Channels Rate-Optimum Beamforming Transmission in MIMO Rician Fading Channels Dimitrios E. Kontaxis National and Kapodistrian University of Athens Department of Informatics and telecommunications Abstract In this

More information

Tight Lower Bounds on the Ergodic Capacity of Rayleigh Fading MIMO Channels

Tight Lower Bounds on the Ergodic Capacity of Rayleigh Fading MIMO Channels Tight Lower Bounds on the Ergodic Capacity of Rayleigh Fading MIMO Channels Özgür Oyman ), Rohit U. Nabar ), Helmut Bölcskei 2), and Arogyaswami J. Paulraj ) ) Information Systems Laboratory, Stanford

More information

Advanced Topics in Digital Communications Spezielle Methoden der digitalen Datenübertragung

Advanced Topics in Digital Communications Spezielle Methoden der digitalen Datenübertragung Advanced Topics in Digital Communications Spezielle Methoden der digitalen Datenübertragung Dr.-Ing. Carsten Bockelmann Institute for Telecommunications and High-Frequency Techniques Department of Communications

More information

Mobile Communications (KECE425) Lecture Note Prof. Young-Chai Ko

Mobile Communications (KECE425) Lecture Note Prof. Young-Chai Ko Mobile Communications (KECE425) Lecture Note 20 5-19-2014 Prof Young-Chai Ko Summary Complexity issues of diversity systems ADC and Nyquist sampling theorem Transmit diversity Channel is known at the transmitter

More information

Multiple Antennas in Wireless Communications

Multiple Antennas in Wireless Communications Multiple Antennas in Wireless Communications Luca Sanguinetti Department of Information Engineering Pisa University luca.sanguinetti@iet.unipi.it April, 2009 Luca Sanguinetti (IET) MIMO April, 2009 1 /

More information

Optimum Transmission Scheme for a MISO Wireless System with Partial Channel Knowledge and Infinite K factor

Optimum Transmission Scheme for a MISO Wireless System with Partial Channel Knowledge and Infinite K factor Optimum Transmission Scheme for a MISO Wireless System with Partial Channel Knowledge and Infinite K factor Mai Vu, Arogyaswami Paulraj Information Systems Laboratory, Department of Electrical Engineering

More information

EE 5407 Part II: Spatial Based Wireless Communications

EE 5407 Part II: Spatial Based Wireless Communications EE 5407 Part II: Spatial Based Wireless Communications Instructor: Prof. Rui Zhang E-mail: rzhang@i2r.a-star.edu.sg Website: http://www.ece.nus.edu.sg/stfpage/elezhang/ Lecture II: Receive Beamforming

More information

Space-Time Coding for Multi-Antenna Systems

Space-Time Coding for Multi-Antenna Systems Space-Time Coding for Multi-Antenna Systems ECE 559VV Class Project Sreekanth Annapureddy vannapu2@uiuc.edu Dec 3rd 2007 MIMO: Diversity vs Multiplexing Multiplexing Diversity Pictures taken from lectures

More information

Constellation Precoded Beamforming

Constellation Precoded Beamforming Constellation Precoded Beamforming Hong Ju Park and Ender Ayanoglu Center for Pervasive Communications and Computing Department of Electrical Engineering and Computer Science University of California,

More information

Diversity-Multiplexing Tradeoff in MIMO Channels with Partial CSIT. ECE 559 Presentation Hoa Pham Dec 3, 2007

Diversity-Multiplexing Tradeoff in MIMO Channels with Partial CSIT. ECE 559 Presentation Hoa Pham Dec 3, 2007 Diversity-Multiplexing Tradeoff in MIMO Channels with Partial CSIT ECE 559 Presentation Hoa Pham Dec 3, 2007 Introduction MIMO systems provide two types of gains Diversity Gain: each path from a transmitter

More information

DSP Applications for Wireless Communications: Linear Equalisation of MIMO Channels

DSP Applications for Wireless Communications: Linear Equalisation of MIMO Channels DSP Applications for Wireless Communications: Dr. Waleed Al-Hanafy waleed alhanafy@yahoo.com Faculty of Electronic Engineering, Menoufia Univ., Egypt Digital Signal Processing (ECE407) Lecture no. 5 August

More information

TX Diversity with Array-Interference Gain Date:

TX Diversity with Array-Interference Gain Date: TX Diversity with Array-Interference Gain Date: 2013-09-18 Name Company Address Phone email Gabriel Villardi NICT 3-4 Hikarion-Oka, Yokosuka, Japan +81-46-847-5438 gpvillardi@nict.go.jp Pin-Hsun Lin NICT

More information

Multiuser Capacity in Block Fading Channel

Multiuser Capacity in Block Fading Channel Multiuser Capacity in Block Fading Channel April 2003 1 Introduction and Model We use a block-fading model, with coherence interval T where M independent users simultaneously transmit to a single receiver

More information

Equal Gain Transmission in Multiple-Input Multiple-Output Wireless Systems

Equal Gain Transmission in Multiple-Input Multiple-Output Wireless Systems TO APPEAR IN IEEE TRANSACTIONS ON COMMUNICATIONS, 003 Equal Gain Transmission in Multiple-Input Multiple-Output Wireless Systems David J. Love, Student Member, IEEE, and Robert W. Heath, Jr., Member, IEEE

More information

Asymptotic SER and Outage Probability of MIMO MRC in Correlated Fading

Asymptotic SER and Outage Probability of MIMO MRC in Correlated Fading Asymptotic SER and Outage Probability of MIMO MRC in Correlated Fading Shi Jin, Student Member, IEEE, Matthew R. McKay, Student Member, IEEE, Xiqi Gao, Member, IEEE, and Iain B. Collings, Senior Member,

More information

Blind Channel Identification in (2 1) Alamouti Coded Systems Based on Maximizing the Eigenvalue Spread of Cumulant Matrices

Blind Channel Identification in (2 1) Alamouti Coded Systems Based on Maximizing the Eigenvalue Spread of Cumulant Matrices Blind Channel Identification in (2 1) Alamouti Coded Systems Based on Maximizing the Eigenvalue Spread of Cumulant Matrices Héctor J. Pérez-Iglesias 1, Daniel Iglesia 1, Adriana Dapena 1, and Vicente Zarzoso

More information

Multi-User Gain Maximum Eigenmode Beamforming, and IDMA. Peng Wang and Li Ping City University of Hong Kong

Multi-User Gain Maximum Eigenmode Beamforming, and IDMA. Peng Wang and Li Ping City University of Hong Kong Multi-User Gain Maximum Eigenmode Beamforming, and IDMA Peng Wang and Li Ping City University of Hong Kong 1 Contents Introduction Multi-user gain (MUG) Maximum eigenmode beamforming (MEB) MEB performance

More information

Capacity Region of the Two-Way Multi-Antenna Relay Channel with Analog Tx-Rx Beamforming

Capacity Region of the Two-Way Multi-Antenna Relay Channel with Analog Tx-Rx Beamforming Capacity Region of the Two-Way Multi-Antenna Relay Channel with Analog Tx-Rx Beamforming Authors: Christian Lameiro, Alfredo Nazábal, Fouad Gholam, Javier Vía and Ignacio Santamaría University of Cantabria,

More information

Multiple Antennas for MIMO Communications - Basic Theory

Multiple Antennas for MIMO Communications - Basic Theory Multiple Antennas for MIMO Communications - Basic Theory 1 Introduction The multiple-input multiple-output (MIMO) technology (Fig. 1) is a breakthrough in wireless communication system design. It uses

More information

On the Capacity of Distributed Antenna Systems Lin Dai

On the Capacity of Distributed Antenna Systems Lin Dai On the apacity of Distributed Antenna Systems Lin Dai ity University of Hong Kong JWIT 03 ellular Networs () Base Station (BS) Growing demand for high data rate Multiple antennas at the BS side JWIT 03

More information

Spatial Multiplexing over Correlated MIMO Channels with a Closed Form Precoder

Spatial Multiplexing over Correlated MIMO Channels with a Closed Form Precoder Spatial Multiplexing over Correlated MIMO Channels with a Closed Form Precoder Jabran Akhtar Department of Informatics University of Oslo P. O. Box 1080, Blindern N-0316 Oslo, Norway Email: jabrana@ifi.uio.no

More information

Ergodic and Outage Capacity of Narrowband MIMO Gaussian Channels

Ergodic and Outage Capacity of Narrowband MIMO Gaussian Channels Ergodic and Outage Capacity of Narrowband MIMO Gaussian Channels Yang Wen Liang Department of Electrical and Computer Engineering The University of British Columbia April 19th, 005 Outline of Presentation

More information

Lecture 4. Capacity of Fading Channels

Lecture 4. Capacity of Fading Channels 1 Lecture 4. Capacity of Fading Channels Capacity of AWGN Channels Capacity of Fading Channels Ergodic Capacity Outage Capacity Shannon and Information Theory Claude Elwood Shannon (April 3, 1916 February

More information

Joint FEC Encoder and Linear Precoder Design for MIMO Systems with Antenna Correlation

Joint FEC Encoder and Linear Precoder Design for MIMO Systems with Antenna Correlation Joint FEC Encoder and Linear Precoder Design for MIMO Systems with Antenna Correlation Chongbin Xu, Peng Wang, Zhonghao Zhang, and Li Ping City University of Hong Kong 1 Outline Background Mutual Information

More information

MIMO Capacity and gain of Optimal power allocation using Water-Filling algorithm EE 575 Information Theory

MIMO Capacity and gain of Optimal power allocation using Water-Filling algorithm EE 575 Information Theory ELECTRICAL ENGINEERING DEPARTMENT, KFUPM MIMO Capacity and gain of Optimal power allocation using Water-Filling algorithm EE 575 Information Theory Assignment # 3 Submitted by: Raza Umar Student ID: g200905090

More information

CHANNEL FEEDBACK QUANTIZATION METHODS FOR MISO AND MIMO SYSTEMS

CHANNEL FEEDBACK QUANTIZATION METHODS FOR MISO AND MIMO SYSTEMS CHANNEL FEEDBACK QUANTIZATION METHODS FOR MISO AND MIMO SYSTEMS June Chul Roh and Bhaskar D Rao Department of Electrical and Computer Engineering University of California, San Diego La Jolla, CA 9293 47,

More information

A robust transmit CSI framework with applications in MIMO wireless precoding

A robust transmit CSI framework with applications in MIMO wireless precoding A robust transmit CSI framework with applications in MIMO wireless precoding Mai Vu, and Arogyaswami Paulraj Information Systems Laboratory, Department of Electrical Engineering Stanford University, Stanford,

More information

Under sum power constraint, the capacity of MIMO channels

Under sum power constraint, the capacity of MIMO channels IEEE TRANSACTIONS ON COMMUNICATIONS, VOL 6, NO 9, SEPTEMBER 22 242 Iterative Mode-Dropping for the Sum Capacity of MIMO-MAC with Per-Antenna Power Constraint Yang Zhu and Mai Vu Abstract We propose an

More information

Applications of Lattices in Telecommunications

Applications of Lattices in Telecommunications Applications of Lattices in Telecommunications Dept of Electrical and Computer Systems Engineering Monash University amin.sakzad@monash.edu Oct. 2013 1 Sphere Decoder Algorithm Rotated Signal Constellations

More information

Lattice Reduction Aided Precoding for Multiuser MIMO using Seysen s Algorithm

Lattice Reduction Aided Precoding for Multiuser MIMO using Seysen s Algorithm Lattice Reduction Aided Precoding for Multiuser MIMO using Seysen s Algorithm HongSun An Student Member IEEE he Graduate School of I & Incheon Korea ahs3179@gmail.com Manar Mohaisen Student Member IEEE

More information

Advanced Spatial Modulation Techniques for MIMO Systems

Advanced Spatial Modulation Techniques for MIMO Systems Advanced Spatial Modulation Techniques for MIMO Systems Ertugrul Basar Princeton University, Department of Electrical Engineering, Princeton, NJ, USA November 2011 Outline 1 Introduction 2 Spatial Modulation

More information

Maximum Achievable Diversity for MIMO-OFDM Systems with Arbitrary. Spatial Correlation

Maximum Achievable Diversity for MIMO-OFDM Systems with Arbitrary. Spatial Correlation Maximum Achievable Diversity for MIMO-OFDM Systems with Arbitrary Spatial Correlation Ahmed K Sadek, Weifeng Su, and K J Ray Liu Department of Electrical and Computer Engineering, and Institute for Systems

More information

Performance Analysis of Multiple Antenna Systems with VQ-Based Feedback

Performance Analysis of Multiple Antenna Systems with VQ-Based Feedback Performance Analysis of Multiple Antenna Systems with VQ-Based Feedback June Chul Roh and Bhaskar D. Rao Department of Electrical and Computer Engineering University of California, San Diego La Jolla,

More information

EE6604 Personal & Mobile Communications. Week 13. Multi-antenna Techniques

EE6604 Personal & Mobile Communications. Week 13. Multi-antenna Techniques EE6604 Personal & Mobile Communications Week 13 Multi-antenna Techniques 1 Diversity Methods Diversity combats fading by providing the receiver with multiple uncorrelated replicas of the same information

More information

Precoded Integer-Forcing Universally Achieves the MIMO Capacity to Within a Constant Gap

Precoded Integer-Forcing Universally Achieves the MIMO Capacity to Within a Constant Gap Precoded Integer-Forcing Universally Achieves the MIMO Capacity to Within a Constant Gap Or Ordentlich Dept EE-Systems, TAU Tel Aviv, Israel Email: ordent@engtauacil Uri Erez Dept EE-Systems, TAU Tel Aviv,

More information

Limited Feedback-based Unitary Precoder Design in Rician MIMO Channel via Trellis Exploration Algorithm

Limited Feedback-based Unitary Precoder Design in Rician MIMO Channel via Trellis Exploration Algorithm Limited Feedback-based Unitary Precoder Design in Rician MIMO Channel via Trellis Exploration Algorithm Dalin Zhu Department of Wireless Communications NEC Laboratories China NLC) 11F Bld.A Innovation

More information

A Thesis for the Degree of Master. An Improved LLR Computation Algorithm for QRM-MLD in Coded MIMO Systems

A Thesis for the Degree of Master. An Improved LLR Computation Algorithm for QRM-MLD in Coded MIMO Systems A Thesis for the Degree of Master An Improved LLR Computation Algorithm for QRM-MLD in Coded MIMO Systems Wonjae Shin School of Engineering Information and Communications University 2007 An Improved LLR

More information

Two-Way Training: Optimal Power Allocation for Pilot and Data Transmission

Two-Way Training: Optimal Power Allocation for Pilot and Data Transmission 564 IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, VOL. 9, NO. 2, FEBRUARY 200 Two-Way Training: Optimal Power Allocation for Pilot and Data Transmission Xiangyun Zhou, Student Member, IEEE, Tharaka A.

More information

2336 IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 57, NO. 6, JUNE Minimum BER Linear MIMO Transceivers With Adaptive Number of Substreams

2336 IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 57, NO. 6, JUNE Minimum BER Linear MIMO Transceivers With Adaptive Number of Substreams 2336 IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 57, NO. 6, JUNE 2009 Minimum BER Linear MIMO Transceivers With Adaptive Number of Substreams Luis G. Ordóñez, Student Member, IEEE, Daniel P. Palomar,

More information

Dynamic System Performance of SISO, MISO and MIMO Alamouti Schemes

Dynamic System Performance of SISO, MISO and MIMO Alamouti Schemes Dynamic System Performance of SISO, MISO and MIMO Alamouti Schemes Dorra Ben Cheikh Battikh, Jean-Marc Kelif, Marceau Coupechoux and Philippe Godlewski Orange Labs, Issy-les-moulineaux, France Email: {dorra.bencheikh,

More information

Characterizing the Capacity for MIMO Wireless Channels with Non-zero Mean and Transmit Covariance

Characterizing the Capacity for MIMO Wireless Channels with Non-zero Mean and Transmit Covariance Characterizing the Capacity for MIMO Wireless Channels with Non-zero Mean and Transmit Covariance Mai Vu and Arogyaswami Paulraj Information Systems Laboratory, Department of Electrical Engineering Stanford

More information

Practicable MIMO Capacity in Ideal Channels

Practicable MIMO Capacity in Ideal Channels Practicable MIMO Capacity in Ideal Channels S. Amir Mirtaheri,Rodney G. Vaughan School of Engineering Science, Simon Fraser University, British Columbia, V5A 1S6 Canada Abstract The impact of communications

More information

Mode Selection for Multi-Antenna Broadcast Channels

Mode Selection for Multi-Antenna Broadcast Channels Mode Selection for Multi-Antenna Broadcast Channels Gill November 22, 2011 Gill (University of Delaware) November 22, 2011 1 / 25 Part I Mode Selection for MISO BC with Perfect/Imperfect CSI [1]-[3] Gill

More information

Lecture 8: MIMO Architectures (II) Theoretical Foundations of Wireless Communications 1. Overview. Ragnar Thobaben CommTh/EES/KTH

Lecture 8: MIMO Architectures (II) Theoretical Foundations of Wireless Communications 1. Overview. Ragnar Thobaben CommTh/EES/KTH MIMO : MIMO Theoretical Foundations of Wireless Communications 1 Wednesday, May 25, 2016 09:15-12:00, SIP 1 Textbook: D. Tse and P. Viswanath, Fundamentals of Wireless Communication 1 / 20 Overview MIMO

More information

Multi-Input Multi-Output Systems (MIMO) Channel Model for MIMO MIMO Decoding MIMO Gains Multi-User MIMO Systems

Multi-Input Multi-Output Systems (MIMO) Channel Model for MIMO MIMO Decoding MIMO Gains Multi-User MIMO Systems Multi-Input Multi-Output Systems (MIMO) Channel Model for MIMO MIMO Decoding MIMO Gains Multi-User MIMO Systems Multi-Input Multi-Output Systems (MIMO) Channel Model for MIMO MIMO Decoding MIMO Gains Multi-User

More information

IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 52, NO. 5, MAY

IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 52, NO. 5, MAY IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 52, NO. 5, MAY 2004 1179 Optimum Linear Joint ansmit-receive Processing for MIMO Channels with QoS Constraints Daniel Pérez Palomar, Member, IEEE, Miguel Angel

More information

On Improving the BER Performance of Rate-Adaptive Block Transceivers, with Applications to DMT

On Improving the BER Performance of Rate-Adaptive Block Transceivers, with Applications to DMT On Improving the BER Performance of Rate-Adaptive Block Transceivers, with Applications to DMT Yanwu Ding, Timothy N. Davidson and K. Max Wong Department of Electrical and Computer Engineering, McMaster

More information

Linear Precoding for Mutual Information Maximization in MIMO Systems

Linear Precoding for Mutual Information Maximization in MIMO Systems Linear Precoding for Mutual Information Maximization in MIMO Systems Meritxell Lamarca,2 Signal Theory and Communications Department, Technical University of Catalonia, Barcelona (Spain) 2 ECE Department,

More information

A Fast And Optimal Deterministic Algorithm For NP-Hard Antenna Selection Problem

A Fast And Optimal Deterministic Algorithm For NP-Hard Antenna Selection Problem A Fast And Optimal Deterministic Algorithm For NP-Hard Antenna Selection Problem Naveed Iqbal, Christian Schneider and Reiner S. Thomä Electronic Measurement Research Lab Ilmenau University of Technology

More information

Received Signal, Interference and Noise

Received Signal, Interference and Noise Optimum Combining Maximum ratio combining (MRC) maximizes the output signal-to-noise ratio (SNR) and is the optimal combining method in a maximum likelihood sense for channels where the additive impairment

More information

Spatial and Temporal Power Allocation for MISO Systems with Delayed Feedback

Spatial and Temporal Power Allocation for MISO Systems with Delayed Feedback Spatial and Temporal Power Allocation for MISO Systems with Delayed Feedback Venkata Sreekanta Annapureddy 1 Srikrishna Bhashyam 2 1 Department of Electrical and Computer Engineering University of Illinois

More information

Low-High SNR Transition in Multiuser MIMO

Low-High SNR Transition in Multiuser MIMO Low-High SNR Transition in Multiuser MIMO Malcolm Egan 1 1 Agent Technology Center, Faculty of Electrical Engineering, Czech Technical University in Prague, Czech Republic. 1 Abstract arxiv:1409.4393v1

More information

ON ADAPTIVE TRANSMISSION, SIGNAL DETECTION AND CHANNEL ESTIMATION FOR MULTIPLE ANTENNA SYSTEMS. A Dissertation YONGZHE XIE

ON ADAPTIVE TRANSMISSION, SIGNAL DETECTION AND CHANNEL ESTIMATION FOR MULTIPLE ANTENNA SYSTEMS. A Dissertation YONGZHE XIE ON ADAPTIVE TRANSMISSION, SIGNAL DETECTION AND CHANNEL ESTIMATION FOR MULTIPLE ANTENNA SYSTEMS A Dissertation by YONGZHE XIE Submitted to the Office of Graduate Studies of Texas A&M University in partial

More information

MULTI-INPUT multi-output (MIMO) channels, usually

MULTI-INPUT multi-output (MIMO) channels, usually 3086 IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 57, NO. 8, AUGUST 2009 Worst-Case Robust MIMO Transmission With Imperfect Channel Knowledge Jiaheng Wang, Student Member, IEEE, and Daniel P. Palomar,

More information

Morning Session Capacity-based Power Control. Department of Electrical and Computer Engineering University of Maryland

Morning Session Capacity-based Power Control. Department of Electrical and Computer Engineering University of Maryland Morning Session Capacity-based Power Control Şennur Ulukuş Department of Electrical and Computer Engineering University of Maryland So Far, We Learned... Power control with SIR-based QoS guarantees Suitable

More information

Transmit Directions and Optimality of Beamforming in MIMO-MAC with Partial CSI at the Transmitters 1

Transmit Directions and Optimality of Beamforming in MIMO-MAC with Partial CSI at the Transmitters 1 2005 Conference on Information Sciences and Systems, The Johns Hopkins University, March 6 8, 2005 Transmit Directions and Optimality of Beamforming in MIMO-MAC with Partial CSI at the Transmitters Alkan

More information

Multi-Input Multi-Output Systems (MIMO) Channel Model for MIMO MIMO Decoding MIMO Gains Multi-User MIMO Systems

Multi-Input Multi-Output Systems (MIMO) Channel Model for MIMO MIMO Decoding MIMO Gains Multi-User MIMO Systems Multi-Input Multi-Output Systems (MIMO) Channel Model for MIMO MIMO Decoding MIMO Gains Multi-User MIMO Systems Multi-Input Multi-Output Systems (MIMO) Channel Model for MIMO MIMO Decoding MIMO Gains Multi-User

More information

DETERMINING the information theoretic capacity of

DETERMINING the information theoretic capacity of IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, VOL. 6, NO. 7, JULY 007 369 Transactions Letters Outage Capacity and Optimal Power Allocation for Multiple Time-Scale Parallel Fading Channels Subhrakanti

More information

Dirty Paper Coding vs. TDMA for MIMO Broadcast Channels

Dirty Paper Coding vs. TDMA for MIMO Broadcast Channels TO APPEAR IEEE INTERNATIONAL CONFERENCE ON COUNICATIONS, JUNE 004 1 Dirty Paper Coding vs. TDA for IO Broadcast Channels Nihar Jindal & Andrea Goldsmith Dept. of Electrical Engineering, Stanford University

More information

Optimal Receiver for MPSK Signaling with Imperfect Channel Estimation

Optimal Receiver for MPSK Signaling with Imperfect Channel Estimation This full text paper was peer reviewed at the direction of IEEE Communications Society subject matter experts for publication in the WCNC 27 proceedings. Optimal Receiver for PSK Signaling with Imperfect

More information

POWER ALLOCATION AND OPTIMAL TX/RX STRUCTURES FOR MIMO SYSTEMS

POWER ALLOCATION AND OPTIMAL TX/RX STRUCTURES FOR MIMO SYSTEMS POWER ALLOCATION AND OPTIMAL TX/RX STRUCTURES FOR MIMO SYSTEMS R. Cendrillon, O. Rousseaux and M. Moonen SCD/ESAT, Katholiee Universiteit Leuven, Belgium {raphael.cendrillon, olivier.rousseaux, marc.moonen}@esat.uleuven.ac.be

More information

Spatial and Temporal Power Allocation for MISO Systems with Delayed Feedback

Spatial and Temporal Power Allocation for MISO Systems with Delayed Feedback Spatial and Temporal ower Allocation for MISO Systems with Delayed Feedback Venkata Sreekanta Annapureddy and Srikrishna Bhashyam Department of Electrical Engineering Indian Institute of Technology Madras

More information

Impact of channel-state information on coded transmission over fading channels with diversity reception

Impact of channel-state information on coded transmission over fading channels with diversity reception Impact of channel-state information on coded transmission over fading channels with diversity reception Giorgio Taricco Ezio Biglieri Giuseppe Caire September 4, 1998 Abstract We study the synergy between

More information

The RF-Chain Limited MIMO System: Part II Case Study of V-BLAST and GMD

The RF-Chain Limited MIMO System: Part II Case Study of V-BLAST and GMD The RF-Chain Limited MIMO System: Part II Case Study of V-BLAST and GMD Yi Jiang Mahesh K. Varanasi Abstract In Part I of this paper, we have established the fundamental D-M tradeoff of a RF-chain limited

More information

Capacity optimization for Rician correlated MIMO wireless channels

Capacity optimization for Rician correlated MIMO wireless channels Capacity optimization for Rician correlated MIMO wireless channels Mai Vu, and Arogyaswami Paulraj Information Systems Laboratory, Department of Electrical Engineering Stanford University, Stanford, CA

More information

The Optimality of Beamforming: A Unified View

The Optimality of Beamforming: A Unified View The Optimality of Beamforming: A Unified View Sudhir Srinivasa and Syed Ali Jafar Electrical Engineering and Computer Science University of California Irvine, Irvine, CA 92697-2625 Email: sudhirs@uciedu,

More information

WITH PERFECT channel information at the receiver,

WITH PERFECT channel information at the receiver, IEEE JOURNA ON SEECTED AREAS IN COMMUNICATIONS, VO. 25, NO. 7, SEPTEMBER 2007 1269 On the Capacity of MIMO Wireless Channels with Dynamic CSIT Mai Vu, Member, IEEE, and Arogyaswami Paulraj, Fellow, IEEE

More information

OVER the past ten years, research (see the references in

OVER the past ten years, research (see the references in 766 IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 54, NO. 2, FEBRUARY 2006 Duplex Distortion Models for Limited Feedback MIMO Communication David J. Love, Member, IEEE Abstract The use of limited feedback

More information

Parallel Additive Gaussian Channels

Parallel Additive Gaussian Channels Parallel Additive Gaussian Channels Let us assume that we have N parallel one-dimensional channels disturbed by noise sources with variances σ 2,,σ 2 N. N 0,σ 2 x x N N 0,σ 2 N y y N Energy Constraint:

More information

Optimal Transmit Strategies in MIMO Ricean Channels with MMSE Receiver

Optimal Transmit Strategies in MIMO Ricean Channels with MMSE Receiver Optimal Transmit Strategies in MIMO Ricean Channels with MMSE Receiver E. A. Jorswieck 1, A. Sezgin 1, H. Boche 1 and E. Costa 2 1 Fraunhofer Institute for Telecommunications, Heinrich-Hertz-Institut 2

More information

Optimal Transmitter Eigen-Beamforming and Space-Time Block Coding based on Channel Correlations Λ

Optimal Transmitter Eigen-Beamforming and Space-Time Block Coding based on Channel Correlations Λ Optimal Transmitter Eigen-Beamforming and Space-Time Block Coding based on Channel Correlations Λ Shengli Zhou and Georgios B. Giannakis Dept. of ECE, Univ. of Minnesota, 2 Union Street SE, Minneapolis,

More information

Secure Multiuser MISO Communication Systems with Quantized Feedback

Secure Multiuser MISO Communication Systems with Quantized Feedback Secure Multiuser MISO Communication Systems with Quantized Feedback Berna Özbek*, Özgecan Özdoğan*, Güneş Karabulut Kurt** *Department of Electrical and Electronics Engineering Izmir Institute of Technology,Turkey

More information

Grassmannian Beamforming for Multiple-Input Multiple-Output Wireless Systems

Grassmannian Beamforming for Multiple-Input Multiple-Output Wireless Systems IEEE TRANSACTIONS ON INFORMATION THEORY, VOL. 49, NO. 0, OCTOBER 003 735 Grassmannian Beamforming for Multiple-Input Multiple-Output Wireless Systems David J. Love, Student Member, IEEE, Robert W. Heath,

More information

VECTOR QUANTIZATION TECHNIQUES FOR MULTIPLE-ANTENNA CHANNEL INFORMATION FEEDBACK

VECTOR QUANTIZATION TECHNIQUES FOR MULTIPLE-ANTENNA CHANNEL INFORMATION FEEDBACK VECTOR QUANTIZATION TECHNIQUES FOR MULTIPLE-ANTENNA CHANNEL INFORMATION FEEDBACK June Chul Roh and Bhaskar D. Rao Department of Electrical and Computer Engineering University of California, San Diego La

More information

SOS-BASED BLIND CHANNEL ESTIMATION IN MULTIUSER SPACE-TIME BLOCK CODED SYSTEMS

SOS-BASED BLIND CHANNEL ESTIMATION IN MULTIUSER SPACE-TIME BLOCK CODED SYSTEMS SOS-BASED BLIND CHANNEL ESTIMATION IN MULTIUSER SPACE-TIME BLOCK CODED SYSTEMS Javier Vía, Ignacio Santamaría Dept. of Communications Engineering University of Cantabria, Spain e-mail:jvia,nacho}@gtas.dicom.unican.es

More information

Improved Multiple Feedback Successive Interference Cancellation Algorithm for Near-Optimal MIMO Detection

Improved Multiple Feedback Successive Interference Cancellation Algorithm for Near-Optimal MIMO Detection Improved Multiple Feedback Successive Interference Cancellation Algorithm for Near-Optimal MIMO Detection Manish Mandloi, Mohammed Azahar Hussain and Vimal Bhatia Discipline of Electrical Engineering,

More information

Secure Degrees of Freedom of the MIMO Multiple Access Wiretap Channel

Secure Degrees of Freedom of the MIMO Multiple Access Wiretap Channel Secure Degrees of Freedom of the MIMO Multiple Access Wiretap Channel Pritam Mukherjee Sennur Ulukus Department of Electrical and Computer Engineering University of Maryland, College Park, MD 074 pritamm@umd.edu

More information

Transmit Diversity for Arrays in Correlated Rayleigh Fading

Transmit Diversity for Arrays in Correlated Rayleigh Fading 1 Transmit Diversity for Arrays in Correlated Rayleigh Fading Cornelius van Rensburg and Benjamin Friedlander C van Rensburg is with Samsung Telecommunications America. E-mail: cdvanren@ece.ucdavis.edu

More information

On the Performance of Random Vector Quantization Limited Feedback Beamforming in a MISO System

On the Performance of Random Vector Quantization Limited Feedback Beamforming in a MISO System 1 On the Performance of Random Vector Quantization Limited Feedback Beamforming in a MISO System Chun Kin Au-Yeung, Student Member, IEEE, and David J. Love, Member, IEEE Abstract In multiple antenna wireless

More information

Capacity Analysis of MIMO Systems

Capacity Analysis of MIMO Systems Diplomarbeit Capacity Analysis of MIMO Systems ausgeführt zum Zwecke der Erlangung des akademischen Grades eines Diplom-Ingenieurs unter der Leitung von Dipl.-Ing. Dominik Seethaler Ao. Prof. Dipl.-Ing.

More information

Quantifying the Performance Gain of Direction Feedback in a MISO System

Quantifying the Performance Gain of Direction Feedback in a MISO System Quantifying the Performance Gain of Direction Feedback in a ISO System Shengli Zhou, Jinhong Wu, Zhengdao Wang 3, and ilos Doroslovacki Dept. of Electrical and Computer Engineering, University of Connecticut

More information

Optimum Power Allocation in Fading MIMO Multiple Access Channels with Partial CSI at the Transmitters

Optimum Power Allocation in Fading MIMO Multiple Access Channels with Partial CSI at the Transmitters Optimum Power Allocation in Fading MIMO Multiple Access Channels with Partial CSI at the Transmitters Alkan Soysal Sennur Ulukus Department of Electrical and Computer Engineering University of Maryland,

More information

Ergodic Capacity, Capacity Distribution and Outage Capacity of MIMO Time-Varying and Frequency-Selective Rayleigh Fading Channels

Ergodic Capacity, Capacity Distribution and Outage Capacity of MIMO Time-Varying and Frequency-Selective Rayleigh Fading Channels Ergodic Capacity, Capacity Distribution and Outage Capacity of MIMO Time-Varying and Frequency-Selective Rayleigh Fading Channels Chengshan Xiao and Yahong R. Zheng Department of Electrical & Computer

More information

Communication Over MIMO Broadcast Channels Using Lattice-Basis Reduction 1

Communication Over MIMO Broadcast Channels Using Lattice-Basis Reduction 1 Communication Over MIMO Broadcast Channels Using Lattice-Basis Reduction 1 Mahmoud Taherzadeh, Amin Mobasher, and Amir K. Khandani Coding & Signal Transmission Laboratory Department of Electrical & Computer

More information

Low-Complexity Detection and Precoding in High Spectral Efficiency Large-MIMO Systems

Low-Complexity Detection and Precoding in High Spectral Efficiency Large-MIMO Systems Low-Complexity Detection and Precoding in High Spectral Efficiency Large-MIMO Systems A Thesis Submitted for the Degree of Doctor of Philosophy in the Faculty of Engineering Submitted by Mohammed Saif

More information