www.gusucode.com > wlan 源码程序 matlab案例代码 > wlan/DemodulateaReceivedVHTLTFSignalExample.m

    %% Demodulate Received VHT-LTF Signal  

%%  
% Create a VHT format configuration object.
vht = wlanVHTConfig;
%%
% Generate a VHT-LTF signal.
txVHTLTF = wlanVHTLTF(vht);
%%
% Add white noise to the signal.
rxVHTLTF = awgn(txVHTLTF,1);
%%
% Demodulate the received signal.
y = wlanVHTLTFDemodulate(rxVHTLTF,vht);