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

📄 remove.m

📁 这是一个关于MATLAB的函数
💻 M
字号:
function dummy = remove(cc,filename)
%REMOVE removes a file from the current Code Composer Project
%   REMOVE(CC,FILE) - Use this command to remove a file
%   from the current Code Composer project.  The file specified
%   must exist in the Code Composer project.
%
%   See also ADD, OPEN, CD. 


% Copyright 2001-2002 The MathWorks, Inc.
% $Revision: 1.3 $ $Date: 2002/06/12 15:30:31 $
error(nargchk(2,2,nargin));
if ~ishandle(cc),
    error('First Parameter must be a CCSDSP Handle.');
end

if ~ischar(filename),
    error('FILE parameter should be a char array.');
elseif isempty(filename),
    error('FILE parameter is empty.');
end

ccsmexswitchyard([40,cc.boardnum,cc.procnum,0,0],filename);

% [EOF] remove.m

⌨️ 快捷键说明

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