Main Content

ltePSSS

Primary sidelink synchronization signal

Description

s = ltePSSS(ue) returns a 124-by-1 complex column vector containing the primary sidelink synchronization signal (PSSS) values for user equipment settings in the ue structure. For more information, see Primary Sidelink Synchronization Signal.

example

Examples

collapse all

Generate PSSS values for in-coverage and out-of-coverage identities.

psss_net = ltePSSS(struct('NSLID',0));
psss_oon = ltePSSS(struct('NSLID',168));

Plot the returned synchronization signal for the in-coverage identities (blue, +) and the out-of-coverage identities (red, o).

scatPlot = scatterplot(psss_net,1,0,'b+');
grid
hold on
scatterplot(psss_oon,1,0,'ro',scatPlot)

Figure Scatter Plot contains an axes object. The axes object with title Scatter plot, xlabel In-Phase, ylabel Quadrature contains 2 objects of type line. One or more of the lines displays its values using only markers This object represents Channel 1.

Input Arguments

collapse all

UE-specific settings, specified as a structure containing this parameter field:

Physical layer sidelink synchronization identity, specified as an integer from 0 to 335. (NIDSL)

For more information, see Primary Sidelink Synchronization Signal.

Example: 6

Data Types: double

Output Arguments

collapse all

PSSS values, returned as a 124-by-1 complex-valued numeric column vector. These values are created for the user equipment settings in the ue structure. For more information, see Primary Sidelink Synchronization Signal.

More About

collapse all

References

[1] 3GPP TS 36.211. “Evolved Universal Terrestrial Radio Access (E-UTRA); Physical Channels and Modulation.” 3rd Generation Partnership Project; Technical Specification Group Radio Access Network. URL: https://www.3gpp.org.

Version History

Introduced in R2016b