Main Content

getTransportBlock

Get transport block from UL-SCH encoder

Description

The getTransportBlock function returns a transport block from an uplink shared channel (UL-SCH) encoder System object™. The function assumes that the transport block was previously loaded into the encoder by using the setTransportBlock object function.

trblk = getTransportBlock(encUL) returns the transport block number 0 from the specified UL-SCH encoder encUL. When the UL-SCH encoder is loaded with two transport blocks, the function returns transport block number 0.

trblk = getTransportBlock(encUL,harqID) returns the transport block loaded for the specified hybrid automatic repeat-request (HARQ) process number harqID.

example

trblk = getTransportBlock(encUL,Name=Value) specifies options using one or more name-value arguments. For example, to specify transport block number 1, set BlockID to 1. (since R2024a)

Examples

collapse all

Generate a random sequence of binary values corresponding to one transport block of length 5120.

trBlkLen1 = 5120;
trBlk1 = randi([0 1],trBlkLen1,1,'int8');

Create and configure an UL-SCH encoder System object with multiple HARQ processes and the specified target code rate.

targetCodeRate = 567/1024;
encUL = nrULSCH('MultipleHARQProcesses',true);
encUL.TargetCodeRate = targetCodeRate;

Load the transport block into the UL-SCH encoder for HARQ process number 1.

setTransportBlock(encUL,trBlk1,1);

Call the encoder with QPSK modulation scheme, 1 transmission layer, an output length of 10,240 bits, redundancy version 0, and HARQ process number 1. The encoder applies the UL-SCH processing chain to the transport block loaded into the object using HARQ process number 1.

encUL('QPSK',1,10240,0,1); 

Retrieve the transport block from the encoder for HARQ process number 1. Verify that the retrieved block is identical to the block originally loaded into the encoder for this HARQ process.

tmp = getTransportBlock(encUL,1);
isequal(tmp,trBlk1) 
ans = logical
   1

Repeat the encoding operation for a new transport block of length 4400 and HARQ process number 2.

trBlkLen2 = 4400;
trBlk2 = randi([0 1],trBlkLen2,1,'int8');
setTransportBlock(encUL,trBlk2,2); 
encUL('QPSK',1,8800,0,2);

Retrieve the first transport block again. Verify that the first transport block is still unchanged.

tmp = getTransportBlock(encUL,1);
isequal(tmp,trBlk1)
ans = logical
   1

Input Arguments

collapse all

UL-SCH encoder, specified as an nrULSCH System object. The object implements the UL-SCH processing chain specified in TS 38.212 Section 6.2.

HARQ process number, specified as an integer from 0 to 31. To specify a value other than 0, set the MultipleHARQProcesses object property to true.

Data Types: double

Name-Value Arguments

collapse all

Specify optional pairs of arguments as Name1=Value1,...,NameN=ValueN, where Name is the argument name and Value is the corresponding value. Name-value arguments must appear after other arguments, but the order of the pairs does not matter.

Example: getTransportBlock(encUL,HARQI=10,BlockID=1)

Since R2024a

HARQ process number, specified as an integer from 0 to 31. To specify a value other than 0, set the MultipleHARQProcesses object property to true.

Data Types: double

Since R2024a

Transport block number, specified as 0 or 1.

Data Types: double

Output Arguments

collapse all

Transport block, returned as a binary column vector.

Data Types: int8

References

[1] 3GPP TS 38.212. “NR; Multiplexing and channel coding.” 3rd Generation Partnership Project; Technical Specification Group Radio Access Network.

Extended Capabilities

expand all

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

GPU Code Generation
Generate CUDA® code for NVIDIA® GPUs using GPU Coder™.

Version History

Introduced in R2019a

expand all

See Also

Functions

Objects