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

    %% Create wlanS1GConfig Object for Two Users
% Create an S1G configuration object that assigns a 2 MHz bandwidth and two
% users. Use a combination of Name,Value pairs and in-line initialization
% to change default settings. In vector-valued properties, each element
% applies to a specific user.
cfgMU = wlanS1GConfig('ChannelBandwidth','CBW2', ...
    'Preamble','Long', ...
    'NumUsers',2, ...
    'GroupID',2, ...
    'NumTransmitAntennas', 2);
cfgMU.NumSpaceTimeStreams = [1 1];
cfgMU.MCS = [4 8];
cfgMU.APEPLength = [1024 2048];
cfgMU
%%
% |NumUsers| is set to 2 and the user-dependent properties are two-element
% vectors.