exitalex.m
来自「matlab处理图像的一些基本方法。其中有一部分mex程序需要安装编译」· M 代码 · 共 45 行
M
45 行
function exitalex(how)%EXITALEX Quit Alex%% EXITALEX(HOW)%% if HOW is not 0 exit alex only else quit matlab;%%%% Copyright (c) 1995 by Claudio Rivetti and Mark Young% claudio@alice.uoregon.edu, mark@alice.uoregon.edu%global Clipboard TempDirif nargin==0 how=1;endif exist(Clipboard) == 2 delete(Clipboard); setclipboard([]);endif exist([TempDir 'map.tmp']) == 2 delete([TempDir 'map.tmp']);endif exist([TempDir 'newmap.tmp']) == 2 delete([TempDir 'newmap.tmp']);endif exist([TempDir 'alexclip.tmp']) == 2 delete([TempDir 'alexclip.tmp']);endif closeimage save_setup; if how==0 quit; end close all; clear all;endreturn;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?