ofdm.m
来自「关于MIMO-OFDM的matlab和simulink仿真程序或模型(有OFDM」· M 代码 · 共 18 行
M
18 行
% Run OFDM simulation
tic % Start stopwatch to calculate how long QAM simulation takes
disp(' '),disp('------------------------------------------------------------')
disp('OFDM Simulation')
tx
ch
rx
% Stop stopwatch to calculate how long QAM simulation takes
OFDM_simulation_time = toc;
if OFDM_simulation_time > 60
disp(strcat('Time for OFDM simulation=', num2str(OFDM_simulation_time/60), ' minutes.'));
else
disp(strcat('Time for OFDM simulation=', num2str(OFDM_simulation_time), ' seconds.'));
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?