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

📄 rtwmakecfg.m

📁 交流 模糊控制 交流 模糊控制
💻 M
字号:
%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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -