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

📄 firstrun.m

📁 MATLAB在飞行动力学和控制中应用的工具
💻 M
字号:
% FIRSTRUN is an initialization macro for floppy-disk distributions of
% the FDC toolbox. It must be run the first time the toolbox is used.
%
% Note: not applicable for the FDC packages distributed via Internet!

fdcrootdir = fullfile(matlabroot,'TOOLBOX','FDC13');
if exist(fdcroot) ~= 7
   errordlg('Can''t find FDC root-directory!');
else
   chdir fdcroot;
end

clc;
disp(' ');
disp(' FDC setup');
disp(' =========');
disp(' The FDC root-directory must be added to your Matlabpath.');
disp(' To do so, EDITPATH will be started after you press a key.');
disp([' Add the folder ',fdcrootdir,' to the Matlabpath']);
disp(' and make sure the results are saved for future sessions.');
disp(' ');
disp('<<< Press a key to proceed >>>');

% Call path-edit tool EDITPATH
pause
editpath

clc;
disp('   Complete the FDC setup by running FDC or FDCINIT');

% -----------------------------------------------------------------------------
% The FDC toolbox. Copyright Marc Rauw, 1994-2000.
% Last revision of this program: February 7, 1998.

⌨️ 快捷键说明

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