Documentation

nrLayerDemap

Layer demapping onto scrambled and modulated codewords

Description

example

out= nrLayerDemap(in)returns one or two codewords obtained from layer demapping the received layered symbols specified byin. The function determines the number of codewords based on the number of layers, as specified in TS 38.211 Table 7.3.1.3-1[1].

Examples

collapse all

Map a single codeword onto four layers. Recover the original codeword using layer demapping. Check for errors.

codeword = ones(20,1); nLayers = 4; layeredOut = nrLayerMap(codeword,nLayers); out = nrLayerDemap(layeredOut); isequal(codeword,out{1})
ans = logical 1

Input Arguments

collapse all

Layered modulation symbols, specified as a complex matrix of sizeM-by-nLayers.Mis the number of modulation symbols in a transmission layer.nLayersis the number of transmission layers in the range 1 to 8.

Data Types:double
Complex Number Support:Yes

Output Arguments

collapse all

Modulation symbols in codewords, returned as a cell array of one or two complex column vectors. This output inherits the data type of the inputin. One vector corresponds to one codeword. The number of codewords is based on the number of layers. The function determines the number of codewords using TS 38.211 Table 7.3.1.3-1.

Data Types:cell

References

[1]3GPP TS 38.211. “NR; Physical channels and modulation.”3rd Generation Partnership Project; Technical Specification Group Radio Access Network.

Extended Capabilities

C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.

Introduced in R2018b