Main Content

wlanlltfdemodulate

解调L-LTF波形

Description

例子

y= wlanlltfdemodulate(X,,,,cbw返回被解调的l-ltf1waveform given time-domain input signalXand channel bandwidthcbw

例子

y= wlanlltfdemodulate(X,,,,CFG给定格式配置对象返回解调的L-LTF,CFG

例子

y= wlanlltfdemodulate(___,,,,符号指定OFDM符号偏移,符号,使用先前语法中的任何参数。

Examples

全部折叠

在通过L-LTF穿过AWGN通道后,解码非HT OFDM传输中使用的L-LTF。

创建一个非HT配置对象并使用它来生成L-LTF信号。

cfg = wlannonhtconfig;txsig = wlanlltf(cfg);

Pass the L-LTF signal through an AWGN channel. Demodulate the received signal.

rxsig = awgn(txsig,15,'measured');y = wlanlltfdemodulate(rxsig,'cbw20');

通过AWGN通道通过L-LTF后,解码VHT传输中使用的L-LTF。

Create a VHT configuration object and use it to generate an L-LTF signal.

cfg = wlanvhtconfig;txsig = wlanlltf(cfg);

Pass the L-LTF signal through an AWGN channel.

rxSig = awgn(txSig,5);

使用来自wlanvhtconfigobject.

y = wlanlltfdemodulate(rxsig,CFG);

Demodulate the L-LTF for the HT-mixed transmission format, given a custom OFDM symbol offset.

set the channel bandwidth to 40 MHz and the OFDM symbol offset to 1. That way, the FFT takes place after the guard interval.

cbw ='cbw40';ofdmsymoffset = 1;

创建HT配置对象并使用它来生成L-LTF信号。

cfg = wlanhtconfig('信道带宽',CBW);txsig = wlanlltf(cfg);

Pass the L-LTF signal through an AWGN channel.

rxSig = awgn(txSig,10);

Demodulate the received L-LTF using a custom OFDM symbol offset.

y = wlanlltfdemodulate(rxsig,'cbw40',ofdmsymoffset);

输入参数

全部折叠

时间域输入信号对应于该L-LTFppdu,指定为ns-by-nr向量或矩阵。ns是样本的数量和nr是接收天线的数量。

ns与频道带宽成正比。时间域波形由两个符号组成。

信道带宽 ns
'cbw5',,,,'cbw10',,,,'cbw20' 160
'cbw40' 320
'cbw80' 640
'CBW160' 1280
'CBW320' 2560

数据类型:双倍的
复杂的数字支持:金宝app是的

通道带宽,指定为这些值之一。

  • 'cbw5'- 5 MHz的频道带宽

  • 'cbw10'- 10 MHz的频道带宽

  • 'cbw20'- 20 MHz的频道带宽

  • 'cbw40'– Channel bandwidth of 40 MHz

  • 'cbw80'- 80 MHz的频道带宽

  • 'CBW160'– Channel bandwidth of 160 MHz

  • 'CBW320'- 320 MHz的频道带宽

数据类型:char|细绳

格式信息,指定为WLAN配置对象。要创建这些对象,请参阅wlannonhtconfig,,,,wlanHTConfig, 或者wlanvhtconfig

OFDM符号采样偏移,作为循环前缀长度的一部分,在间隔[0,1]中指定为标量。

the value that you specify indicates the start location for OFDM demodulation relative to the beginning of the cyclic prefix.

Example:0.45

数据类型:双倍的

输出参数

全部折叠

Demodulated L-LTF signal, returned as ann英石-by-n符号-by-nr大批。n英石是被占领子载体的数量,n符号是ofdm符号的数量,并且nr是接收天线的数量。For the L-LTF,n符号总是2。

n英石varies with channel bandwidth.

信道带宽 占领子载体的数量(n英石
'cbw20',,,,'cbw10',,,,'cbw5' 52
'cbw40' 104
'cbw80' 208
'CBW160' 416
'CBW320' 832

更多关于

全部折叠

l-ltf

传统长期训练领域(L-LTF)是802.11™OFDM PLCP旧版序言中的第二个领域。L-LTF是VHT,HT和NON-HT PPDU的组件。

通道估计,良好的频率偏移估计和细符号正时偏移估计取决于L-LTF。

the L-LTF is composed of a cyclic prefix (CP) followed by two identical long training symbols (C1 and C2). The CP consists of the second half of the long training symbol.

L-LTF持续时间随通道带宽而变化。

频道带宽(MHz) 子载波频率间距,ΔF(kHz) 快速傅立叶变换(FFT)周期(tFFt= 1 /ΔF 循环前缀或训练符号护罩间隔(GI2)持续时间(tGI2=tFFt/ 2) L-LTF持续时间(t=tGI2+ 2×tFFt
20, 40, 80, 160, and 320 312.5 3.2μs 1。6 μs 8μs
10 156.25 6.4μs 3.2μs 16μs
5 78.125 12.8μs 6.4μs 32 μs

ppdu

the PLCP protocol data unit (PPDU) is the completePLCPframe, including PLCP headers, MAC headers, the MAC data field, and the MAC and PLCP trailers[2]

PLCP

物理层收敛过程(PLCP)是802.11网络中物理层的上部分。每个物理层都有自己的PLCP,可为Mac提供辅助框架[2]

references

[1] IEEE STD 802.11™-2016(IEEE STD 802.11-2012的修订版)。“第11部分:无线LAN中型访问控制(MAC)和物理层(PHY)规格。”IEEE信息技术标准 - 系统之间的电信和信息交换 - 本地和大都市区域网络 - 特定要求。

[2] Gast,Matthew S.802.11n: A Survival Guide。加利福尼亚州塞巴斯托波尔:O’Reilly Media Inc.,2012年,第1页。120。

扩展功能

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

版本历史记录

Introduced in R2015b

1IEEE®STD 802.11-2012经IEEE许可,改编并重印。版权所有2012。保留所有权利。