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

📄 checkinstall.m

📁 航天工程工具箱
💻 M
字号:
function checkinstall
%CHECKINSTALL  Checks toolbox installation info.
%   Prettyprints the directories that are to be installed in the
%   matlab path when running the INSTALL program, or uninstalled 
%   from the matlab path when running UNINSTALL. The last line shows
%   whether the toolbox is installed or not.
%
%   See also MAKEINSTALL, INSTALL, UNINSTALL.

% Copyright (c) 2003-07-15, B. Rasmus Anthin.
% Revision 2003-07-16.

if ~exist(fullfile(pwd,'info.ins'),'file')
   error('Installation info is missing. Wrong directory?')
end
load info.ins -mat
disp(' ')
disp([blanks(3) pwd])
for i=1:length(INS_DIRS)
   disp([blanks(3) fullfile(pwd,INS_DIRS{i})])
end
if IS_INSTALLED
   disp([blanks(3) 'Installed.'])
else
   disp([blanks(3) 'Not installed.'])
end
disp(' ')

⌨️ 快捷键说明

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