Why does ltePMISelect select PMI using summed SINR?

조회 수: 1 (최근 30일)
Chulong chen
Chulong chen 2017년 6월 20일
답변: Iain Stirling 2017년 6월 27일
In the source code of ltePMISelect (\toolbox\lte\lte\ltePMISelect.m), I found the PMI are selected based on maximum summed SINR criteria as shown in below. It seems makes more sense to select PMI based on maximum summed capacity given by sum(log2(1+SINR)). Can someone from the team developed this explain and point to the reference paper if possible?
if (wideband_i1)
% wideband part
totalSINR=sum(sum(SINRs,1),2);
totalSINR=reshape(totalSINR,N1,N2);
best1=find(max(totalSINR,[],2)==max(max(totalSINR,[],2)));
if (~isempty(best1))
best1=best1(1);
end
end
Thanks a lot in advance.

답변 (1개)

Iain Stirling
Iain Stirling 2017년 6월 27일
Hello Chulong,
The selection criteria used is based on the linear MMSE SINR metric assumed in the design of the codebook entries during the standardisation process. This was chosen not solely as a function of the theoretical performance but also with regard to the implementation complexity and feedback quantization. The following paper gives a comparison of various techniques: D. J. Love and R. W. Heath, “Limited Feedback Unitary Precoding for Spatial Multiplexing Systems,” IEEE Trans. Inf. Theory, vol. 51, no. 8, pp.2967–2976, Aug. 2005.
Regards,
Iain.

카테고리

Help CenterFile Exchange에서 LTE Toolbox에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by