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

📄 ui_acluster.m

📁 基于Matlab
💻 M
字号:
% keep all variables local in scope
function [] = ui_acluster();
 
% declare global variables
dfec_global; 
ui_private_global;

if get(h_acluster,'Value')

   if isempty(acluster)
      warn('No adaptation has been done yet.','Cannot display cluster plot.')
   else 
      figure(fig_acluster);
      if real_source
         plot(real(acluster),'.');
         zoom on;
         xlabel('k');
         ylabel('z(k)');
         title('Cluster plot');
      else
         subplot(211);
         plot(real(acluster),'.');
         xlabel('k');
         title('Re z(k)');

         subplot(212);
         plot(imag(acluster),'.');
         xlabel('k');
         title('Im z(k)');
      end;
   end;
else
   if ishandle(fig_acluster), delete(fig_acluster); end;
end;

⌨️ 快捷键说明

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