|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
本帖最后由 zhouyang664 于 2010-10-29 21:13 编辑
最近课比较多,只能晚上回来上网,望各位网友多多包涵!
今天正在使用matlab的时候,点鼠标点得快了,将matlab程序给关掉了,然后导致workplace中的变量都没了,还得重运行,很郁闷!
然后我就想当我关闭matlab时候能不能像关闭figure一样出现一个提示“是否关闭”的对话框,研究后发现是可以的
首先在command窗口下:edit quit.m,下面是帮助文件:
%QUIT Quit MATLAB session.
% QUIT terminates MATLAB after running the script FINISH.M,
% if it exists. The workspace information will not be saved
% unless FINISH.M calls SAVE. If an error occurs while
% executing FINISH.M, quitting is cancelled.
%
% QUIT FORCE can be used to bypass an errant FINISH.M that
% will not let you quit.
%
% QUIT CANCEL can be used in FINISH.M to cancel quitting.
% It has no effect anywhere else.
%
% Example
% Put the following lines of code in your FINISH.M file to
% display a dialog that allows you to cancel quitting.
%
% button = questdlg('Ready to quit?', ...
% 'Exit Dialog','Yes','No','No');
% switch button
% case 'Yes',
% disp('Exiting MATLAB');
% %Save variables to matlab.mat
% save
% case 'No',
% quit cancel;
% end
将上面红色的文字新建一个finish.m放在matlab可搜索路径下,即可:
finish.rar
(255 Bytes, 下载次数: 1)
如果要实现figure关闭实现提示对话框,请下载下边文件:
confirm.rar
(35.77 KB, 下载次数: 4)
小提示:好像用迅雷这样的下载工具,不能正常下载;可以这样解决:点击下载的时候,出现迅雷下载界面时,不点击“立即下载”,点击“取消”,然后就出现了一个“另存为”的界面,这个一般可以!
|
评分
-
1
查看全部评分
-
|