필터 지우기
필터 지우기

Add 5G NR CSI-RS to DL-SCH and PDSCH modulation

조회 수: 6 (최근 30일)
Nicola Caldognetto
Nicola Caldognetto 2021년 9월 22일
답변: Marc 2022년 5월 12일
Hi,
I was re-elaborating this example https://it.mathworks.com/help/5g/ug/nr-pdsch-throughput.html#d123e1973 removing the SS burst and adding CSI data to the 5G NR grid
What've done is to configure the CSI-RS with zero power (so it would be easier to see on the trasmission grid before the channel
csirs = nrCSIRSConfig;
csirs.CSIRSType = {'zp'};
Now, the issue is that, when I use the function
ind = nrCSIRSIndices(carrier,csirs,'OutputResourceFormat','cell');
sym = nrCSIRS(carrier,csirs,'OutputResourceFormat','cell');
To have CSI-RS symbols and indices, the indices that the function returns are already used by the PDSCH modulation so, I can't understand how to add the CSI-RS and make everything work together

답변 (1개)

Marc
Marc 2022년 5월 12일
You need to use the ReservedREs field for the PDSCH configuration to tell the PDSCH not to use those REs.
Something like:
csirsInd = nrCSIRSIndices(carrier,csirs);
% Indicate that those REs are not available for PDSCH symbols
pdsch.ReservedREs = csirsInd-1;
Then you can generate the PDSCH indices and symbols once the ReservedREs field has been populated.

카테고리

Help CenterFile Exchange에서 End-to-End Simulation에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by