这是一个关于MATLAB的函数

源代码在线查看: tconf.m

软件大小: 314 K
上传用户: feiguohaihu
关键词: MATLAB 函数
下载地址: 免注册下载 普通下载 VIP

相关代码

				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
							

相关资源