⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gosimulation.m

📁 这是一个基于WCDMA系统的 MIMO-OFDM下行链路的仿真模型。
💻 M
字号:
%************************************************************************************
%
% 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -