Main Content

lteDuplexingInfo

双工信息

Description

example

info= lteDuplexingInfo(enb)返回结构,info,提供有关双工安排的信息。有关更多信息,请参阅Duplex Mode Configuration.

Examples

collapse all

获取每个子帧中TDD(配置0)帧中的下行链路OFDM符号的数量。

A Configuration 0 TDD frame is organized as follows:

  • Only subframes 0, 1, 5, and 6 will contain a non-zero number of DL OFDM symbols.

  • Subframe 0 and 5 are designated for DL.

  • 子架1和6是特殊的子框架。

  • Subframes 2, 3, 4, 7, 8, and 9 are designated for UL.

Initialize a cell-wide configuration structure for RMC R.0 and a Configuration 0 TDD frame.

enb = lteRMCDL('r.0');enb.duplexmode ='TDD'; enb.SSC = 0; enb.TDDConfig = 0;

Loop through all subframes in a frame.

forn = 0:9 enb.NSubframe = n; duplexInfo = lteDuplexingInfo(enb); fprintf('DL symbols in subframe %d: %d\n',n,duplexInfo.NSymbolsDL)end
子帧中的DL符号0:14子帧1:3子帧2:0 dl符号2:0子帧3:0 dl符号3:0子帧4:0子帧4:0子帧5:14 dl符号5:14 dl sublame 5:14 dl符号6:3 DL子帧中的符号7:0 dl符号8:0 dl符号9:0

Input Arguments

collapse all

细胞范围的设置, specified as a structure containing these fields. For more information, seeDuplex Mode Configuration.

Cyclic prefix length in downlink, specified as'Normal'或者“扩展”.

Data Types:char

Cyclic prefix length in uplink, specified as'Normal'或者“扩展”.

Data Types:char|string

Duplexing mode, specified as'FDD'或者'TDD'.

Data Types:char|string

上行或下行configuration, specified as an integer from 0 to 6. Required only ifDuplexMode被设定为'TDD'.

Data Types:double

Special subframe configuration, specified as an integer from 0 to 9. Required only ifDuplexMode被设定为'TDD'.

Data Types:double

Subframe number, specified as a nonnegative integer. Required only ifDuplexMode被设定为'TDD'.

Data Types:double

Data Types:struct

Output Arguments

collapse all

复式信息,作为包含以下字段的结构返回。

Total number of symbols in subframe, returned as a nonnegative integer.

Type of subframe, returned as'Downlink','Uplink', or'Special'.

用于下行链路传输的符号数量,作为非负整数返回。

Number of symbols in the guard period, returned as a nonnegative integer.

Number of symbols used for transmission in uplink (UL), returned as a nonnegative integer.

More About

collapse all

Duplex Mode Configuration

For FDD duplex mode:

  • IfCyclicPrefixULis present, the link direction is assumed to be uplink.

  • IfCyclicPrefixUL不存在,假定链路方向是下行链路,并且循环前缀是根据CyclicPrefix.

    • IfCyclicPrefixis also not present, the default'Normal'cyclic prefix is used.

对于TDD双工模式:

  • The subframe type can beuplink,downlink, orspecial.TDDConfigNSubframeidentify the subframe type as specified in TS 36.211[1], Table 4.2-2.

    • For uplink or downlink subframes,CyclicPrefixUL或者CyclicPrefix, respectively, indicate the relevant cyclic prefix setting.

    • For special subframes, thelteDuplexingInfo功能用途SSCCyclicPrefixto identify the special subframe configuration, as specified in TS 36.211[1], Table 4.2-1.

参考

[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

在R2014A中引入