fdc.m

来自「matlab的FDC工具箱」· M 代码 · 共 35 行

M
35
字号
% FDC.M displays some welcome messages for the FDC toolbox and
% calls FDCINIT.M to initialize the Matlab Path.
%
% See also FDCINIT

% Go to programs directory, initialize path, show welcome message
% and splash screen and return to main FDC directory.
% ---------------------------------------------------------------
prog_dir = what('programs');
chdir(prog_dir.path);

fdc_splash;

fdcinit;

welcome_msg = {' ', ...
               '  Flight Dynamics and Control Toolbox, version 1.4.0. To open the main', ...
               '  FDC library, type ''fdclib''. Type ''browse fdc'' to access on-line help.', ...
               ' '};

clc;
disp(char(welcome_msg));
clear welcome_msg prog_dir

% Return to main FDC directory
% ----------------------------
chdir ..


%-----------------------------------------------------------------------
% The Flight Dynamics and Control Toolbox version 1.4.0. 
% (c) Copyright Marc Rauw, 1994-2005. Licensed under the Open Software 
% License version 2.1; see COPYING.TXT and LICENSE.TXT for more details.
% Last revision: December 31, 2004. 
%-----------------------------------------------------------------------

⌨️ 快捷键说明

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