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

📄 closedynaest.m

📁 Yaakov Bar-Shalom, X.-Rong Li,Thiagalingam Kirubarajan - Estimation with Applications to Tracking an
💻 M
字号:
%%% DynaEst 3.032 11/27/2000
% Copyright (c) 2000 Yaakov Bar-Shalom
%
% CloseDynaest, close dynaest 3.0 application.

if exist('h_CommonWindow')
   figure(h_CommonWindow)
end
ButtonName = questdlg('Do you want to save a current project file?',...
   'Close Dynaest');
switch ButtonName 
case 'Yes',
   SaveProject;
case 'Cancel' 
   clear ButtonName ;
   return;
end
if exist('h_CommonWindow')
   delete(h_CommonWindow)
end
delete(h_MainWindow);

for i=1:SubFigureNumber 
   if ishandle(h_SubFigure(i))
      delete(h_SubFigure(i)) ;
   end
end

if exist('~temp.mat','file')
   delete ~temp.mat ;
end

clear all ;

⌨️ 快捷键说明

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