ui_fimp.m

来自「基于Matlab」· M 代码 · 共 20 行

M
20
字号
% this plots the impulse responses 
% of adaptive designs
function [] = ui_fimp();
 
% Get variables
dfec_global; 
ui_private_global;

% Plot
if get(h_fimp,'Value')
   if (isempty(fL))
      warning('No adaptation has been done yet!');
   else
      figure(fig_fimp);
      impu(c,spacing,fL,ddL,hL,qL,faL,fbL,Nd,deltaL,max(SNR));
   end;
else
   if ishandle(fig_fimp), delete(fig_fimp); end;
end;

⌨️ 快捷键说明

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