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

Size: px
Start display at page:

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

Transcription

1 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: g /23/2010 In this assignment, capacity of parallel Gaussian channels has been compared for equal power allocation and optimal power allocation based on water-filling algorithm. Mean capacity comparisons, Complementary CDF comparisons and Outage probability comparisons have been analyzed for SISO, SIMO, MISO, MIMO and MIMO using Water-Filling power allocation.

2

3 Table of Contents Problem 1: Parallel Gaussian Channels... 4 Part (1a) Total capacity of parallel channels for equal power distribution... 4 Part (1b) Water-filling algorithm... 5 Part (1c) Total capacity of parallel channels for optimal power distribution... 5 Problem 2 + Problem 3: MIMO Capacity + Water filling for 4x4 MIMO Channel... 6 Part (2a+3a) Mean capacity comparisons for MIMO channels... 6 Part (2b+3b) Complementary CDF comparison for flat fading channels... 8 Part (2c+3c) Outage probability vs. SNR for flat adding channels... 9 Appix A Appix B... 13

4 Problem 1: Parallel Gaussian Channels Given received signal: Where, ~ 0, Total Power transmission=p t =20 Part (1a) Total capacity of parallel channels for equal power distribution As we have 4 parallel channels M=4=N t =N r N 1 =1, N 2 =7, N 3 =5, N 4 =3 For equal power distribution: 20 5, 1,2,, 4 4 max ; : 1 2 log log /

5 Part (1b) Water-filling algorithm Matlab implementation of Water filling algorithm is available in Appix A. Part (1c) Total capacity of parallel channels for optimal power distribution For, N 1 =1, N 2 =7, N 3 =5, N 4 =3 Water level obtained from Matlab code = v=9 & P 1 =8, P 2 =2, P 3 =4, P 4 =6 using, With optimal power allocation; 1 2 log / Hence, /

6 Problem 2 + Problem 3: MIMO Capacity + Water filling for 4x4 MIMO Channel Matlab Implementation for MIMO Capacity and Water filling for 4x4 MIMO Channel is available in Appix B. Part (2a+3a) Mean capacity comparisons for MIMO channels

7 Water filing Capacity Gain 0.9 WF gain in capacity WF gain in bps/hz ---> SNR in db --->

8 Part (2b+3b) Complementary CDF comparison for flat fading channels 1 - Outage Probability ---> Complementary CDF comparisons (vs capacity) at SNR=10dB 4x4 MIMO WF 4x4 MIMO 4x1 MISO 1x4 SIMO 1X1 SISO Mean Capacity bps/hz --->

9 Part (2c+3c) Outage probability vs. SNR for flat adding channels 10 0 Outage probability vs SNR for 4 bps/hz 10-1 Outage Probability x4 MIMO 4x1 MISO 1x4 SIMO 1X1 SISO 4x4 MIMO WF SNR in db --->

10 Appix A %% Function: wfill % This routine optimally allocates the power among "m" channel using water % filling algorithm % Input: % 1. Pt: Total Power budget % 2. m: Total available parallel channels % 3. N: Un-correlated Noise variances ( a row vector of lenght m) % Output: % 1. v: water level % 2. P: power levels corresponding to "m" (arranged in the same order as % N) according to water filling algo. function [v P] = wfill(pt,m,n) % Optimum power allocation function res=1; % resolution of step size P=zeros(1,m); % initialize transmitted power over each parallel channel to be 0 [N_sorted,index]=sort(N); % Noise power sorted in ascing order step=(n_sorted(2)-n_sorted(1))/res; N_sorted_temp=N_sorted; for p=1:length(n_sorted_temp)-1 if ((max(n_sorted_temp)-min(n_sorted_temp))>pt) m=m-1; N_sorted_temp=N_sorted_temp(1:-1); if step>pt/2 step=pt/2; if step<0.001 step=.001; j=0; k=0; epsilon=1e-5; epsilon2=1e-4; %threshold for discrepancies in water level over different channels i=1; z=0; q=2; step_old=0; for iter=1:1e6*res if(sum(abs((n_sorted(1).*ones(1,m))-n_sorted(1:m))<1e-6)==m && (sum(p)< Pt)) step=(pt-sum(p))/m; N_sorted(1:m)=N_sorted(1:m)+step; P(1:m)=P(1:m)+step; break;

11 N_sorted(i)=N_sorted(i)+step; P(i)=P(i)+step; if(sum(abs((n_sorted(1).*ones(1,q))-n_sorted(1:q))<1e-6)==q && (sum(p)< Pt)) if q==(length(n)) step=2*step; if(q<m) step=n_sorted(q+1)-n_sorted(q); q=q+1; if (j>0 && step_old>step) step =step_old; j=0; if (sum(p)>pt) k=k+1; N_sorted(1:i)=N_sorted(1:i)-step; P(1:i)=P(1:i)-step; % find how many channels(out of m) are at same level check = check2=find(check); i=max(check2); step=(pt-sum(p))/(i); N_sorted(1:i)=N_sorted(1:i)+step; P(1:i)=P(1:i)+step; abs(n_sorted-n_sorted(1).*ones(1,length(n)))<epsilon; if(k>2) display(['warning: Power alltoment exceeding budget ',num2str(k),'rd time']); sum(p) if i<length(n) if((n_sorted(i)-n_sorted(i+1))>epsilon) %if water has gone above the next level, set the step such that when water %is added to the next level, its level becomes the same as previous level if ((z~=1)&&(step~=n_sorted(i)-n_sorted(i+1))) step_old=step; step=n_sorted(i)-n_sorted(i+1); z=0; if (step< 0.001) j=1; i=i+1; else if i>1 % if water is below next entry of N, %re-initiazlize it to point at 1st entry and start re-filling water i=1; else % if i is pointing at the last entry of N, re intialize it to point at 1st entry

12 i=1; if (abs(sum(p)-pt) < epsilon2) if i>1&&(n_sorted(i) < N_sorted(i-1)) N_sorted(1:i-1)=N_sorted(1:i-1)-step; P(1:i-1)=P(1:i-1)-step; step=(step*(i-1))/i; N_sorted(1:i)=N_sorted(1:i)+step; P(1:i)=P(1:i)+step; j=0; i=1; z=1; if (abs(sum(p)-pt) < epsilon2) flag_vector2=abs(n_sorted(1).*ones(1,length(find(p)))- N_sorted(1:length(find(P))))< epsilon2.*ones(1,length(find(p))); flag_vector=find(flag_vector2-ones(1,length(find(p)))); if isempty(flag_vector) break; if iter>1000 display('warning: wf took more than 1000 iterations'); v= N_sorted(1); % water level N_sorted; N; P=P(index); if(abs(sum(p)-pt) > epsilon2) display('warning: Power above budget');

13 Appix B %% Main function to calculate MIMO channel capacity and associated figures %% of merit like complementary CDF & Outage probability % Objective: (1)This function compares Mean channel capacity for different % MIMO realizations (SISO, SIMO,MISO, MIMO)as a function of SNR % (2) compares complementary CDF for different MIMO realizations % (SISO, SIMO,MISO, MIMO)as a function of capacity in bps/hz % (3) compares Outage probability for different MIMO realizations % (SISO, SIMO,MISO, MIMO)as a function of SNR % Author: Raza Umar as part of EE 575 Information Theory Assignment % Date: May 08, 2010 %% >>>>>>>>>>>>>>>>>>>>>>>>... CLEANING... <<<<<<<<<<<<<<<<<<<<<<<<<<<<<< close all; clear all; clc; %% >>>>>>>>>>>>>>>>>... SIMULTAION PARAMS... <<<<<<<<<<<<<<<<<<<<<<<<<<<< SNR_dB=-10:30; SNR=10.^(SNR_dB./10); ch_realizations=10000; % Monte Carlo sim. of 10,000 channel realizations c_outage=4; epsilon=1e-6; %% >>>>>>>>>>>>>>>>>>>>>>>... SISO... <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< % initialization and param setting c11_i=zeros(length(snr),ch_realizations); c11=zeros(length(snr),1); % matrix initializations to avoid matrix growing inside loop % Mean channel capacity calculations for i1=1:length(snr) SNR_i= SNR(i1); % for one specific value of SNR h11=1/sqrt(2).*complex(randn(1,ch_realizations),randn(1,ch_realizations)); % complex normal r.v. with var=1/2 per dim. h11_mag_sq=abs(h11).^2; c11_i(i1,1:ch_realizations)=log2(1+snr_i.*h11_mag_sq); % instantaneous cap. c11(i1)=mean(c11_i(i1,:)); % mean capacity %complementary CDF at SNR=10dB c11_all=c11_i(21,:); % channel realizations at 10dB SNR range_11=0:0.1:max(c11_all); count11=histc(c11_all,range_11); count11_norm=cumsum(count11)/max(cumsum(count11)); comp_cdf_11=1-count11_norm; %outage probability j1= 1; for i1=find(snr_db==2):find(snr_db==20) c11_all=abs(c11_i(i1,:)); range11=0:0.1:max(c11_all); count11=histc(c11_all,range11);

14 count11_norm=cumsum(count11)/max(cumsum(count11)); if(isempty(find(abs(range11-c_outage)<epsilon))) outage11(j1)=1; else outage11(j1)=count11_norm(find(abs(range11-c_outage)<epsilon)); j1=j1+1; %% >>>>>>>>>>>>>>>>>>>>>... MIMO (4x4)... <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< % initialization and param setting Pt=1; % power budget for MIMO water filling Nr=4; Nt=4; I_Nr=eye(Nr); c44_i=zeros(length(snr),ch_realizations); c44=zeros(length(snr),1); % matrix initializations to avoid matrix growing inside loop % Mean channel capacity calculations for i1=1:length(snr) SNR_i= SNR(i1); % for one specific value of SNR H_vec=1/sqrt(2).*complex(randn(Nr*Nt,ch_realizations),randn(Nr*Nt,ch_realizat ions)); % Channel matrix with elements as complex normal r.v. having var=1/2 per dim. H=reshape(H_vec,Nr,Nt,ch_realizations); for i2=1:ch_realizations H_i=H(1:Nr,1:Nt,i2); H_H_hermt=H_i*H_i'; arg=i_nr+ (SNR_i/Nt).*H_H_hermt; arg2= det(arg); c44_i(i1,i2)=log2(arg2); % instantaneous cap. %% alternate implementation to find inst. cap. (using eigen values) % lamda=eig(h_h_hermt); % arg3=(1+(snr_i/nt)*lamda(1))*(1+(snr_i/nt)*lamda(2))*(1+(snr_i/nt)*lamda(3))* (1+(SNR_i/Nt)*lamda(4)); % c442i(i1,i2)=log2(arg3); % instantaneous cap. %% MIMO water filling lamda=eig(h_h_hermt); N=1./(SNR_i.*lamda); N_wf=N'; [v P_wf]=wfill(Pt,4,N_wf); arg_wf=(1+p_wf(1)/n_wf(1)).*(1+p_wf(2)/n_wf(2)).*(1+p_wf(3)/n_wf(3)).*(1+p_wf (4)/N_wf(4)); c44_i_wf(i1,i2)=log2(arg_wf); % instantaneous cap. using wf %% c44(i1)=mean(c44_i(i1,:)); % mean capacity c44_wf(i1)=mean(c44_i_wf(i1,:)); % mean capacity

15 %% %%complementary CDF at SNR=10dB c44_all=abs(c44_i(21,:)); % channel realizations at 10dB SNR range_44=0:0.1:max(c44_all); count44=histc(c44_all,range_44); count44_norm=cumsum(count44)/max(cumsum(count44)); comp_cdf_44=1-count44_norm; %%MIMO WF c44_all_wf=abs(c44_i_wf(21,:)); % channel realizations at 10dB SNR range_44_wf=0:0.1:max(c44_all_wf); count44_wf=histc(c44_all_wf,range_44_wf); count44_norm_wf=cumsum(count44_wf)/max(cumsum(count44_wf)); comp_cdf_44_wf=1-count44_norm_wf; %% %outage prob j1= 1; for i1=find(snr_db==2):find(snr_db==20) c44_all=abs(c44_i(i1,:)); range44=0:0.1:max(c44_all); count44=histc(c44_all,range44); count44_norm=cumsum(count44)/max(cumsum(count44)); if(isempty(find(abs(range44-c_outage)<epsilon))) outage44(j1)=1; else outage44(j1)=count44_norm(find(abs(range44-c_outage)<epsilon)); j1=j1+1; %%MIMO WF j1= 1; for i1=find(snr_db==2):find(snr_db==20) c44_all_wf=abs(c44_i_wf(i1,:)); range44_wf=0:0.1:max(c44_all_wf); count44_wf=histc(c44_all_wf,range44_wf); count44_norm_wf=cumsum(count44_wf)/max(cumsum(count44_wf)); if(isempty(find(abs(range44_wf-c_outage)<epsilon))) outage44_wf(j1)=1; else outage44_wf(j1)=count44_norm_wf(find(abs(range44_wfc_outage)<epsilon)); j1=j1+1; %% >>>>>>>>>>>>>>>>>>>>>... SIMO (1x4)... <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< % initialization and param setting Nr=4; Nt=1; c14_i=zeros(length(snr),ch_realizations); c14=zeros(length(snr),1); % matrix initializations to avoid matrix growing inside loop % Mean channel capacity calculations for i1=1:length(snr)

16 SNR_i= SNR(i1); % for one specific value of SNR h14=1/sqrt(2).*complex(randn(nr*nt,ch_realizations),randn(nr*nt,ch_realizatio ns)); % complex normal r.v. having var=1/2 per dim. h14_mag_sq=abs(h14).^2; h14_mag_sq_sum=sum(h14_mag_sq); c14_i(i1,1:ch_realizations)=log2(1+snr_i.*h14_mag_sq_sum); % instantaneous cap. c14(i1)=mean(c14_i(i1,:)); % mean capacity %complementary CDF at SNR=10dB c14_all=c14_i(21,:); % channel realizations at 10dB SNR range_14=0:0.1:max(c14_all); count14=histc(c14_all,range_14); count14_norm=cumsum(count14)/max(cumsum(count14)); comp_cdf_14=1-count14_norm; %outage probability j1= 1; for i1=find(snr_db==2):find(snr_db==20) c14_all=abs(c14_i(i1,:)); range14=0:0.1:max(c14_all); count14=histc(c14_all,range14); count14_norm=cumsum(count14)/max(cumsum(count14)); if(isempty(find(abs(range14-c_outage)<epsilon))) outage14(j1)=1; else outage14(j1)=count14_norm(find(abs(range14-c_outage)<epsilon)); j1=j1+1; %% >>>>>>>>>>>>>>>>>>>>>... MISO (4x1)... <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< % initialization and param setting Nr=1; Nt=4; c41_i=zeros(length(snr),ch_realizations); c41=zeros(length(snr),1); % matrix initializations to avoid matrix growing inside loop % Mean channel capacity calculations for i1=1:length(snr) SNR_i= SNR(i1); % for one specific value of SNR h41=1/sqrt(2).*complex(randn(nr*nt,ch_realizations),randn(nr*nt,ch_realizatio ns)); % complex normal r.v. having var=1/2 per dim. h41_mag_sq=abs(h41).^2; h41_mag_sq_sum=sum(h41_mag_sq); c41_i(i1,1:ch_realizations)=log2(1+(snr_i./nt).*h41_mag_sq_sum); % instantaneous cap. c41(i1)=mean(c41_i(i1,:)); % mean capacity

17 %complementary CDF at SNR=10dB c41_all=c41_i(21,:); % channel realizations at 10dB SNR range_41=0:0.1:max(c41_all); count41=histc(c41_all,range_41); count41_norm=cumsum(count41)/max(cumsum(count41)); comp_cdf_41=1-count41_norm; %outage probability j1= 1; for i1=find(snr_db==2):find(snr_db==20) c41_all=abs(c41_i(i1,:)); range41=0:0.1:max(c41_all); count41=histc(c41_all,range41); count41_norm=cumsum(count41)/max(cumsum(count41)); if(isempty(find(abs(range41-c_outage)<epsilon))) outage41(j1)=1; else outage41(j1)=count41_norm(find(abs(range41-c_outage)<epsilon)); j1=j1+1; %% >>>>>>>>>>>>>>>>>>>>... Plotting... <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< % Mean channel capacity figure('name','mean Capacity comparisons (vs SNR) for Flat Fading MIMO channels'); plot(snr_db,abs(c44_wf),'bx-',snr_db,abs(c44),'ro',snr_db,c41,'c+- ',SNR_dB,c14,'gs-',SNR_dB,c11,'b:'); leg('4x4 MIMO WF','4x4 MIMO','4x1 MISO','1x4 SIMO','1X1 SISO','Location','NorthWest'); title('mean Capacity vs SNR'); xlabel('snr (db) --->'); ylabel('mean Capacity bps/hz --->'); axis([ ]); %complementary CDF at SNR=10dB figure('name','complementary CDF at SNR = 10dB'); plot(range_44_wf,comp_cdf_44_wf,'bx- ',range_44,comp_cdf_44,'ro',range_41,comp_cdf_41,'c+- ',range_14,comp_cdf_14,'gs-',range_11,comp_cdf_11,'b:'); leg('4x4 MIMO WF','4x4 MIMO','4x1 MISO','1x4 SIMO','1X1 SISO','Location','NorthEast'); title('complementary CDF comparisons (vs capacity) at SNR=10dB'); xlabel('mean Capacity bps/hz --->'); ylabel('1 - Outage Probability --->'); axis([ ]); %outage probability vs SNR for 4 bps/hz figure('name','outage probability comparisons (vs SNR) for Flat Fading Channels'); %plot(range_44,comp_cdf_44,'bx- ',range_44,comp_cdf_44,'ro',range_41,comp_cdf_41,'c+- ',range_14,comp_cdf_14,'gs-',range_11,comp_cdf_11,'b:'); semilogy(snr_db(find(snr_db==2):find(snr_db==20)),outage44_wf,'bx- ',SNR_dB(find(SNR_dB==2):find(SNR_dB==20)),outage44,'ro',SNR_dB(find(SNR_dB== 2):find(SNR_dB==20)),outage41,'c+-

18 ',SNR_dB(find(SNR_dB==2):find(SNR_dB==20)),outage14,'gs- ',SNR_dB(find(SNR_dB==2):find(SNR_dB==20)),outage11,'b:'); leg('4x4 MIMO WF','4x4 MIMO','4x1 MISO','1x4 SIMO','1X1 SISO','Location','SouthEast'); title('outage probability vs SNR for 4 bps/hz'); xlabel('snr in db --->'); ylabel('outage Probability --->'); axis([2 20 1e-6 1]); % MIMO water-filling capacity gain figure('name','capacity gain of water-filling'); plot(snr_db,abs(c44_wf)'-abs(c44)); grid on; title('wf gain in capacity'); xlabel('snr in db --->'); ylabel('wf gain in bps/hz --->');

Homework 5 Solutions. Problem 1

Homework 5 Solutions. Problem 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

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

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

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

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

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

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

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

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

Chapter 4: Continuous channel and its capacity

Chapter 4: Continuous channel and its capacity meghdadi@ensil.unilim.fr Reference : Elements of Information Theory by Cover and Thomas Continuous random variable Gaussian multivariate random variable AWGN Band limited channel Parallel channels Flat

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

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

st semester. Kei Sakaguchi

st semester. Kei Sakaguchi 0 s semeser MIMO Communicaion Sysems #5: MIMO Channel Capaciy Kei Sakaguchi ee ac May 7, 0 Schedule ( s half Dae Tex Conens # Apr. A-, B- Inroducion # Apr. 9 B-5, B-6 Fundamenals

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, Vancouver, British Columbia Email:

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

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

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

Outline - Part III: Co-Channel Interference

Outline - Part III: Co-Channel Interference General Outline Part 0: Background, Motivation, and Goals. Part I: Some Basics. Part II: Diversity Systems. Part III: Co-Channel Interference. Part IV: Multi-Hop Communication Systems. Outline - Part III:

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

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

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

The Effect of Spatial Correlations on MIMO Capacity: A (not so) Large N Analytical Approach: Aris Moustakas 1, Steven Simon 1 & Anirvan Sengupta 1,2

The Effect of Spatial Correlations on MIMO Capacity: A (not so) Large N Analytical Approach: Aris Moustakas 1, Steven Simon 1 & Anirvan Sengupta 1,2 The Effect of Spatial Correlations on MIMO Capacity: A (not so) Large N Analytical Approach: Aris Moustakas 1, Steven Simon 1 & Anirvan Sengupta 1, 1, Rutgers University Outline Aim: Calculate statistics

More information

Performance Analysis of MIMO-OSTBC based Selective DF Cooperative Wireless System with Node Mobility and Channel Estimation Errors

Performance Analysis of MIMO-OSTBC based Selective DF Cooperative Wireless System with Node Mobility and Channel Estimation Errors System Model Performance Analysis of MIMO-OSTBC based Selective DF Cooperative Wireless System with Node Mobility and Channel Estimation Errors Multimedia Wireless Networks (MWN) Group, Indian Institute

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

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

A Step Towards the Cognitive Radar: Target Detection under Nonstationary Clutter

A Step Towards the Cognitive Radar: Target Detection under Nonstationary Clutter A Step Towards the Cognitive Radar: Target Detection under Nonstationary Clutter Murat Akcakaya Department of Electrical and Computer Engineering University of Pittsburgh Email: akcakaya@pitt.edu Satyabrata

More information

Single-Gaussian Messages and Noise Thresholds for Low-Density Lattice Codes

Single-Gaussian Messages and Noise Thresholds for Low-Density Lattice Codes Single-Gaussian Messages and Noise Thresholds for Low-Density Lattice Codes Brian M. Kurkoski, Kazuhiko Yamaguchi and Kingo Kobayashi kurkoski@ice.uec.ac.jp Dept. of Information and Communications Engineering

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

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

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

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

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

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

On the Throughput of Proportional Fair Scheduling with Opportunistic Beamforming for Continuous Fading States

On the Throughput of Proportional Fair Scheduling with Opportunistic Beamforming for Continuous Fading States On the hroughput of Proportional Fair Scheduling with Opportunistic Beamforming for Continuous Fading States Andreas Senst, Peter Schulz-Rittich, Gerd Ascheid, and Heinrich Meyr Institute for Integrated

More information

Cooperative Communication in Spatially Modulated MIMO systems

Cooperative Communication in Spatially Modulated MIMO systems Cooperative Communication in Spatially Modulated MIMO systems Multimedia Wireless Networks (MWN) Group, Department Of Electrical Engineering, Indian Institute of Technology, Kanpur, India {neerajv,adityaj}@iitk.ac.in

More information

Downlink Multi-User MIMO for IEEE m

Downlink Multi-User MIMO for IEEE m Downlink Multi-User MIMO for IEEE 80216m Sivakishore Reddy Naga Sekhar Centre of Excellence in Wireless Technology 2013 Outline 1 Introduction 2 Closed Loop MU-MIMO 3 Results 4 Open Loop MU-MIMO 5 Results

More information

Comparisons of Performance of Various Transmission Schemes of MIMO System Operating under Rician Channel Conditions

Comparisons of Performance of Various Transmission Schemes of MIMO System Operating under Rician Channel Conditions Comparisons of Performance of Various ransmission Schemes of MIMO System Operating under ician Channel Conditions Peerapong Uthansakul and Marek E. Bialkowski School of Information echnology and Electrical

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

ELEC546 MIMO Channel Capacity

ELEC546 MIMO Channel Capacity ELEC546 MIMO Channel Capacity Vincent Lau Simplified Version.0 //2004 MIMO System Model Transmitter with t antennas & receiver with r antennas. X Transmitted Symbol, received symbol Channel Matrix (Flat

More information

Estimation of Performance Loss Due to Delay in Channel Feedback in MIMO Systems

Estimation of Performance Loss Due to Delay in Channel Feedback in MIMO Systems MITSUBISHI ELECTRIC RESEARCH LABORATORIES http://www.merl.com Estimation of Performance Loss Due to Delay in Channel Feedback in MIMO Systems Jianxuan Du Ye Li Daqing Gu Andreas F. Molisch Jinyun Zhang

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

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

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

The Fading Number of a Multiple-Access Rician Fading Channel

The Fading Number of a Multiple-Access Rician Fading Channel The Fading Number of a Multiple-Access Rician Fading Channel Intermediate Report of NSC Project Capacity Analysis of Various Multiple-Antenna Multiple-Users Communication Channels with Joint Estimation

More information

4888 IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, VOL. 15, NO. 7, JULY 2016

4888 IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, VOL. 15, NO. 7, JULY 2016 4888 IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, VOL. 15, NO. 7, JULY 2016 Online Power Control Optimization for Wireless Transmission With Energy Harvesting and Storage Fatemeh Amirnavaei, Student Member,

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

Random Matrices and Wireless Communications

Random Matrices and Wireless Communications Random Matrices and Wireless Communications Jamie Evans Centre for Ultra-Broadband Information Networks (CUBIN) Department of Electrical and Electronic Engineering University of Melbourne 3.5 1 3 0.8 2.5

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

Appendix A Solution of Waveform Design Optimization Problem

Appendix A Solution of Waveform Design Optimization Problem Appix A Solution of Waveform Design Optimization Problem A.1 Preliminaries This section presents some preliminary results used in the proofs throughout the paper. For proofs of the following theorems,

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

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

Simultaneous SDR Optimality via a Joint Matrix Decomp.

Simultaneous SDR Optimality via a Joint Matrix Decomp. Simultaneous SDR Optimality via a Joint Matrix Decomposition Joint work with: Yuval Kochman, MIT Uri Erez, Tel Aviv Uni. May 26, 2011 Model: Source Multicasting over MIMO Channels z 1 H 1 y 1 Rx1 ŝ 1 s

More information

Low Resolution Adaptive Compressed Sensing for mmwave MIMO receivers

Low Resolution Adaptive Compressed Sensing for mmwave MIMO receivers Low Resolution Adaptive Compressed Sensing for mmwave MIMO receivers Cristian Rusu, Nuria González-Prelcic and Robert W. Heath Motivation 2 Power consumption at mmwave in a MIMO receiver Power at 60 GHz

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

An Efficient Optimal Algorithm for Integer-Forcing Linear MIMO Receivers Design

An Efficient Optimal Algorithm for Integer-Forcing Linear MIMO Receivers Design An Efficient Optimal Algorithm for Integer-Forcing Linear MIMO Receivers Design Jinming Wen, Lanping Li, Xiaohu Tang, Wai Ho Mow, and Chintha Tellambura Department of Electrical and Computer Engineering,

More information

On the Optimality of Multiuser Zero-Forcing Precoding in MIMO Broadcast Channels

On the Optimality of Multiuser Zero-Forcing Precoding in MIMO Broadcast Channels On the Optimality of Multiuser Zero-Forcing Precoding in MIMO Broadcast Channels Saeed Kaviani and Witold A. Krzymień University of Alberta / TRLabs, Edmonton, Alberta, Canada T6G 2V4 E-mail: {saeed,wa}@ece.ualberta.ca

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

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

Channel Capacity Estimation for MIMO Systems with Correlated Noise

Channel Capacity Estimation for MIMO Systems with Correlated Noise Channel Capacity Estimation for MIMO Systems with Correlated Noise Snezana Krusevac RSISE, The Australian National University National ICT Australia ACT 0200, Australia snezana.krusevac@rsise.anu.edu.au

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

The Effect of Channel State Information on Optimum Energy Allocation and Energy Efficiency of Cooperative Wireless Transmission Systems

The Effect of Channel State Information on Optimum Energy Allocation and Energy Efficiency of Cooperative Wireless Transmission Systems The Effect of Channel State Information on Optimum Energy Allocation and Energy Efficiency of Cooperative Wireless Transmission Systems Jie Yang and D.R. Brown III Worcester Polytechnic Institute Department

More information

Reliability of Radio-mobile systems considering fading and shadowing channels

Reliability of Radio-mobile systems considering fading and shadowing channels Reliability of Radio-mobile systems considering fading and shadowing channels Philippe Mary ETIS UMR 8051 CNRS, ENSEA, Univ. Cergy-Pontoise, 6 avenue du Ponceau, 95014 Cergy, France Philippe Mary 1 / 32

More information

Analysis of coding on non-ergodic block-fading channels

Analysis of coding on non-ergodic block-fading channels Analysis of coding on non-ergodic block-fading channels Joseph J. Boutros ENST 46 Rue Barrault, Paris boutros@enst.fr Albert Guillén i Fàbregas Univ. of South Australia Mawson Lakes SA 5095 albert.guillen@unisa.edu.au

More information

Lecture 18: Gaussian Channel

Lecture 18: Gaussian Channel Lecture 18: Gaussian Channel Gaussian channel Gaussian channel capacity Dr. Yao Xie, ECE587, Information Theory, Duke University Mona Lisa in AWGN Mona Lisa Noisy Mona Lisa 100 100 200 200 300 300 400

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

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

Lecture 2. Capacity of the Gaussian channel

Lecture 2. Capacity of the Gaussian channel Spring, 207 5237S, Wireless Communications II 2. Lecture 2 Capacity of the Gaussian channel Review on basic concepts in inf. theory ( Cover&Thomas: Elements of Inf. Theory, Tse&Viswanath: Appendix B) AWGN

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

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

Unifying Analysis of Ergodic MIMO Capacity in Correlated Rayleigh Fading Environments

Unifying Analysis of Ergodic MIMO Capacity in Correlated Rayleigh Fading Environments Unifying Analysis of Ergodic MIMO Capacity in Correlated Rayleigh Fading Environments Mario Kiessling,, Joachim Speidel, Markus Reinhar Institute of elecommunications, University of Stuttgart, Germany

More information

Performance Analysis of a Threshold-Based Relay Selection Algorithm in Wireless Networks

Performance Analysis of a Threshold-Based Relay Selection Algorithm in Wireless Networks Communications and Networ, 2010, 2, 87-92 doi:10.4236/cn.2010.22014 Published Online May 2010 (http://www.scirp.org/journal/cn Performance Analysis of a Threshold-Based Relay Selection Algorithm in Wireless

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

Online Power Control Optimization for Wireless Transmission with Energy Harvesting and Storage

Online Power Control Optimization for Wireless Transmission with Energy Harvesting and Storage Online Power Control Optimization for Wireless Transmission with Energy Harvesting and Storage Fatemeh Amirnavaei, Student Member, IEEE and Min Dong, Senior Member, IEEE arxiv:606.046v2 [cs.it] 26 Feb

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 Power Control in Decentralized Gaussian Multiple Access Channels

Optimal Power Control in Decentralized Gaussian Multiple Access Channels 1 Optimal Power Control in Decentralized Gaussian Multiple Access Channels Kamal Singh Department of Electrical Engineering Indian Institute of Technology Bombay. arxiv:1711.08272v1 [eess.sp] 21 Nov 2017

More information

Performance Analysis of Multi-User Massive MIMO Systems Subject to Composite Shadowing-Fading Environment

Performance Analysis of Multi-User Massive MIMO Systems Subject to Composite Shadowing-Fading Environment Performance Analysis of Multi-User Massive MIMO Systems Subject to Composite Shadowing-Fading Environment By Muhammad Saad Zia NUST201260920MSEECS61212F Supervisor Dr. Syed Ali Hassan Department of Electrical

More information

Lecture 15: Thu Feb 28, 2019

Lecture 15: Thu Feb 28, 2019 Lecture 15: Thu Feb 28, 2019 Announce: HW5 posted Lecture: The AWGN waveform channel Projecting temporally AWGN leads to spatially AWGN sufficiency of projection: irrelevancy theorem in waveform AWGN:

More information

component risk analysis

component risk analysis 273: Urban Systems Modeling Lec. 3 component risk analysis instructor: Matteo Pozzi 273: Urban Systems Modeling Lec. 3 component reliability outline risk analysis for components uncertain demand and uncertain

More information

Trust Degree Based Beamforming for Multi-Antenna Cooperative Communication Systems

Trust Degree Based Beamforming for Multi-Antenna Cooperative Communication Systems Introduction Main Results Simulation Conclusions Trust Degree Based Beamforming for Multi-Antenna Cooperative Communication Systems Mojtaba Vaezi joint work with H. Inaltekin, W. Shin, H. V. Poor, and

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

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

On the Design of Scalar Feedback Techniques for MIMO Broadcast Scheduling

On the Design of Scalar Feedback Techniques for MIMO Broadcast Scheduling On the Design of Scalar Feedback Techniques for MIMO Broadcast Scheduling Ruben de Francisco and Dirk T.M. Slock Eurecom Institute Sophia-Antipolis, France Email: {defranci, slock}@eurecom.fr Abstract

More information

Computational Methods Short Course on Image Quality

Computational Methods Short Course on Image Quality Computational Methods Short Course on Image Quality Matthew A. Kupinski What we Will Cover Sources of randomness Computation of linear-observer performance Computation of ideal-observer performance Miscellaneous

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

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

Gaussian source Assumptions d = (x-y) 2, given D, find lower bound of I(X;Y)

Gaussian source Assumptions d = (x-y) 2, given D, find lower bound of I(X;Y) Gaussian source Assumptions d = (x-y) 2, given D, find lower bound of I(X;Y) E{(X-Y) 2 } D

More information

672 IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 57, NO. 2, FEBRUARY We only include here some relevant references that focus on the complex

672 IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 57, NO. 2, FEBRUARY We only include here some relevant references that focus on the complex 672 IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 57, NO. 2, FEBRUARY 2009 Ordered Eigenvalues of a General Class of Hermitian Rom Matrices With Application to the Performance Analysis of MIMO Systems Luis

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

E&CE 358, Winter 2016: Solution #2. Prof. X. Shen

E&CE 358, Winter 2016: Solution #2. Prof. X. Shen E&CE 358, Winter 16: Solution # Prof. X. Shen Email: xshen@bbcr.uwaterloo.ca Prof. X. Shen E&CE 358, Winter 16 ( 1:3-:5 PM: Solution # Problem 1 Problem 1 The signal g(t = e t, t T is corrupted by additive

More information

NOMA: An Information Theoretic Perspective

NOMA: An Information Theoretic Perspective NOMA: An Information Theoretic Perspective Peng Xu, Zhiguo Ding, Member, IEEE, Xuchu Dai and H. Vincent Poor, Fellow, IEEE arxiv:54.775v2 cs.it] 2 May 25 Abstract In this letter, the performance of non-orthogonal

More information

Nearest Neighbor Decoding in MIMO Block-Fading Channels With Imperfect CSIR

Nearest Neighbor Decoding in MIMO Block-Fading Channels With Imperfect CSIR IEEE TRANSACTIONS ON INFORMATION THEORY, VOL. 58, NO. 3, MARCH 2012 1483 Nearest Neighbor Decoding in MIMO Block-Fading Channels With Imperfect CSIR A. Taufiq Asyhari, Student Member, IEEE, Albert Guillén

More information

Achievable Outage Rate Regions for the MISO Interference Channel

Achievable Outage Rate Regions for the MISO Interference Channel Achievable Outage Rate Regions for the MISO Interference Channel Johannes Lindblom, Eleftherios Karipidis and Erik G. Larsson Linköping University Post Print N.B.: When citing this work, cite the original

More information

Vector Channel Capacity with Quantized Feedback

Vector Channel Capacity with Quantized Feedback Vector Channel Capacity with Quantized Feedback Sudhir Srinivasa and Syed Ali Jafar Electrical Engineering and Computer Science University of California Irvine, Irvine, CA 9697-65 Email: syed@ece.uci.edu,

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

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

Information Theory for Wireless Communications, Part II:

Information Theory for Wireless Communications, Part II: Information Theory for Wireless Communications, Part II: Lecture 5: Multiuser Gaussian MIMO Multiple-Access Channel Instructor: Dr Saif K Mohammed Scribe: Johannes Lindblom In this lecture, we give the

More information

Fast-Decodable MIMO HARQ Systems

Fast-Decodable MIMO HARQ Systems 1 Fast-Decodable MIMO HARQ Systems Seyyed Saleh Hosseini, Student Member, IEEE, Jamshid Abouei, Senior Member, IEEE, and Murat Uysal, Senior Member, IEEE Abstract This paper presents a comprehensive study

More information

General Strong Polarization

General Strong Polarization General Strong Polarization Madhu Sudan Harvard University Joint work with Jaroslaw Blasiok (Harvard), Venkatesan Gurswami (CMU), Preetum Nakkiran (Harvard) and Atri Rudra (Buffalo) December 4, 2017 IAS:

More information

Lecture 1: The Multiple Access Channel. Copyright G. Caire 12

Lecture 1: The Multiple Access Channel. Copyright G. Caire 12 Lecture 1: The Multiple Access Channel Copyright G. Caire 12 Outline Two-user MAC. The Gaussian case. The K-user case. Polymatroid structure and resource allocation problems. Copyright G. Caire 13 Two-user

More information

Dynamic Power Control and Optimization Scheme for QoS-Constrained Cooperative Wireless Sensor Networks

Dynamic Power Control and Optimization Scheme for QoS-Constrained Cooperative Wireless Sensor Networks IEEE ICC 2016 Ad-hoc and Sensor Networking Symposium ynamic Power Conol and Optimization Scheme for QoS-Consained Cooperative Wireless Sensor Networks Ziqiang Feng, Ian Wassell Computer Laboratory University

More information