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

📄 post.m

📁 此程序完成MIMO各个自程序的功能
💻 M
字号:
function post(varargin)

%POST Data post-processing.
%   POST simply plots the system performance so that it can be directly
%   exported into the file.
%
%   See also MIMO, LOGREPORT.

%   Copyright 2001-2003 Kamil Anis, anisk@feld.cvut.cz
%   Dept. of Radioelectronics, 
%   Faculty of Electrical Engineering
%   Czech Technical University in Prague
%   $Revision: 1.0 $  $Date: 2003/5/29 22:36:22 $
%   --
%   <additional stuff goes here>

global VERSION

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% BODY BEGIN %%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

j = 1;

for i = 1:length(varargin) / 2;
  x = varargin{1};
  y = varargin{2};
  curve = semilogy(x,y); hold on;
  j = j + 2;
end

set(curve,'LineWidth',2);
grid on;

figtitle = ['MIMOTOOLS ',VERSION,' - Code Performance'];
wintitle = ['MIMOTOOLS: Code Performance'];
ft = title(figtitle);
xlabel('E_b/N_0 [dB]');
ylabel('SER [-]');

set(ft,'FontWeight','bold','FontSize',12);
set(gcf,'Name',wintitle);

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% BODY END %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

⌨️ 快捷键说明

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