gosimulation.m

来自「这是一个基于WCDMA系统的 MIMO-OFDM下行链路的仿真模型。」· M 代码 · 共 33 行

M
33
字号
%************************************************************************************
%
% Copyright 2002 The Mobile and Portable Radio Research Group
%
% Controls the processing for the Go Button in the simulation parameters menu
% The script checks for errors then executes the simulation
%***********************************************************************************
global FrameHandle

SimConfig.Iterations = str2num( get(FrameHandle,'String') );

if isempty(SimConfig.Iterations)
   GenDialog('The Number of Frames field must have a numeric value!!');
   return
end

if SimConfig.Iterations <= 0
   GenDialog('The Number of Frames field must be positive!!');
   set(FrameHandle,'String','1');
   SimConfig.Iterations = 1;
   return
end
   
close;
ErrorRun = DownlinkSimulator(SimConfig);
clear global


   
      
   

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?