📄 fdc.m
字号:
% 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -