showrec.m
来自「现代通信系统(prokis)的所有matlab源程序,对初学者很有帮助的。」· M 代码 · 共 44 行
M
44 行
%Shows receiver e.g. QPSK
function showrec(system)
ss = get(0, 'ScreenSize');
sw = ss(3);
if (nargin == 0)
% find current system system = get_param(0,'CurrentSystem'); % find Root System while (~isempty(get_param(system, 'parent')))
system = get_param(system, 'parent');
end;
% check if System loaded if (exist(system) ~= 4)
clear system;
end;
end;
if (exist('system') == 0)
disp('No Simulink model found!');
else
if (exist(system) ~= 4)
disp(['System ',system,' not found.']) else;
close_system([system, '/binary data']);
close_system([system, '/transmitted symbols']);
close_system([system, '/u(t)']);
close_system([system, '/r(t)']);
close_system([system, '/detected symbols']);
open_system([system, '/Receiver']);
end;
end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?