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

📄 back_section.m

📁 vTools is a toolbox for Matlab 5.3 developed within the Department of Electrical Systems and A
💻 M
字号:
function back_section(from,to)
%BACK FROM SECTION from TO SECTION to
%
%      back_section(from,to)
%
%Massimo Davini 13/05/99 --- revised 28/09/99

global stack;

switch from
   
 case 'synthesis'
  delete(findobj('tag','syn0'));
  set(findobj('tag','file_5'),'enable','off');
  set(findobj('tag','file_6'),'enable','off');
  
  for i=2:13,set(findobj('tag',sprintf('synt_%u',i)),'enable','off');end;
  for i=2:6,set(findobj('tag',sprintf('opti_%u',i)),'enable','off');end;
      
 case 'analysis'      
  delete(findobj('tag','ana0'));
  for i=2:54,set(findobj('tag',sprintf('view_%u',i)),'enable','off');end;
  for i=2:16,set(findobj('tag',sprintf('anal_%u',i)),'enable','off');end;

end;

drawnow;

switch to
 case 'modeling' 
  cd ../model;
  stack.general=rmfield(stack.general,'tfNUM');
  stack.general=rmfield(stack.general,'tfDEN');

  %-----------------------------------------------------------
  %abilitazione e disabilitazione comandi della barra dei men

⌨️ 快捷键说明

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