필터 지우기
필터 지우기

Not enough input arguments

조회 수: 1 (최근 30일)
Adidev Sharma
Adidev Sharma 2020년 2월 9일
댓글: Adidev Sharma 2020년 2월 9일
function [DeepMIMO_dataset,params]=DeepMIMO_Dataset_Generator()
% ------ Inputs to the DeepMIMO dataset generation code ------------ %
%------Ray-tracing scenario
params.scenario='O1'; % The adopted ray tracing scenarios [check the available scenarios at www.aalkhateeb.net/DeepMIMO.html]
%------DeepMIMO parameters set
%Active base stations
params.active_BS=[3,4,5,6]; % Includes the numbers of the active BSs (values from 1-18 for 'O1')
% Active users
params.active_user_first=1000; % The first row of the considered receivers section (check the scenario description for the receiver row map)
params.active_user_last=1500; % The last row of the considered receivers section (check the scenario description for the receiver row map)
% Number of BS Antenna
params.num_ant_x=1; % Number of the UPA antenna array on the x-axis
params.num_ant_y=16; % Number of the UPA antenna array on the y-axis
params.num_ant_z=16; % Number of the UPA antenna array on the z-axis
% Note: The axes of the antennas match the axes of the ray-tracing scenario
% Antenna spacing
params.ant_spacing=.5; % ratio of the wavelnegth; for half wavelength enter .5
% System bandwidth
params.bandwidth=0.5; % The bandiwdth in GHz
% OFDM parameters
params.num_OFDM=1024; % Number of OFDM subcarriers
params.OFDM_sampling_factor=4; % The constructed channels will be calculated only at the sampled subcarriers (to reduce the size of the dataset)
params.OFDM_limit=64; % Only the first params.OFDM_limit subcarriers will be considered when constructing the channels
% Number of paths
params.num_paths=3; % Maximum number of paths to be considered (a value between 1 and 25), e.g., choose 1 if you are only interested in the strongest path
params.saveDataset=0;
% -------------------------- DeepMIMO Dataset Generation -----------------%
[DeepMIMO_dataset,params]=DeepMIMO_generator(params);
end
  댓글 수: 2
Walter Roberson
Walter Roberson 2020년 2월 9일
This appears to relate to https://github.com/DeepMIMO/DeepMIMO-codes
Adidev Sharma
Adidev Sharma 2020년 2월 9일
yes i have been trying to run those codes on my sytem but it shows error

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Link-Level Simulation에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by