rtwmakecfg.m
来自「模糊控制工具箱,很好用的,有相应的说明文件,希望对大家有用!」· M 代码 · 共 22 行
M
22 行
%RTWMAKECFG adds include and source directories to rtw make files.
% makeInfo=RTWMAKECFG returns a structured array containing
% following field:
% makeInfo.includePath - cell array containing additional include
% directories. Those directories will be
% expanded into include instructions of rtw
% generated make files.
%
% makeInfo.sourcePath - cell array containing additional source
% directories. Those directories will be
% expanded into rules of rtw generated make
% files.
%
% Copyright 1994-2002 The MathWorks, Inc.
% $Revision: 1.3 $
function makeInfo=rtwmakecfg()
makeInfo.includePath = {};
makeInfo.sourcePath = { ...
fullfile(matlabroot,'toolbox','fuzzy','fuzzy','src') };
disp('### Include Fuzzy Logic Toolbox directories');
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?