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

📄 nncontrolutil.m

📁 神经网络预测控制程序的源代码
💻 M
字号:
function varargout=nncontrolutil(command,varargin)
%NNCONTROLUTIL Execute intermediate calls to private function under Simulink for NNcontrol toolbox.
%
%  Synopsis
%
%    varargout=nncontrolutil(command,varargin)
%
%  command  = Function called.
%  varargin = All the input parameters for the function in command.
%  
%  varargout = All the output parameters for the function in command.
%

% Orlando De Jesus, Martin Hagan, 2-27-00
% Copyright 1992-2002 The MathWorks, Inc.
% $Revision: 1.4 $ $Date: 2002/04/14 21:12:13 $

n_par=nargout;
if n_par==0
   feval(command,varargin{:});
else
   varargout=cell(1,n_par);
   [varargout{:}]=feval(command,varargin{:});
end

command=command;

⌨️ 快捷键说明

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