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

📄 tconf.m

📁 这是一个关于MATLAB的函数
💻 M
字号:
function resp=tconf(cc,command)
%TCONF  accepts Javascript commands for DSP/BIOS configuration
%  STDOUT = TCONF(CC,CMD) - Provides a gateway to the DSP/BIOS
%  configuration tool: 'TCONF'.  The TCONF utility accepts 
%  Javascript commands to dynamically configure DSP/BIOS objects.
%
%  See Also PROFILE.

%  Copyright 2001-2002 The MathWorks, Inc.
%  $Revision: 1.5 $  $Date: 2002/06/12 15:30:26 $
error(nargchk(2,2,nargin));
if ~ishandle(cc),
    error('First Parameter must be a CCSDSP Handle.');
end
temp = ccsmexswitchyard([51,cc.boardnum,cc.procnum,0,0],command);
if ~isempty(temp),
    resp = temp;
end 

% [EOF] tconf.m

⌨️ 快捷键说明

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