mexeval.m
来自「matlab下面仿真802.3协议以太网mac层10、100M的网络接口模型。包」· M 代码 · 共 26 行
M
26 行
%MEXEVAL Execute string containing MATLAB expression.
% MEXEVAL(s), where s is a string, causes MATLAB to execute
% the string as an expression or statement.
%
% MEXEVAL(s1,s2) provides the ability to catch errors. It
% execute string s1 and returns if the operation was
% successful. If the operation generates an error,
% string s2 is evaluated before returning. Think of this
% MEXEVAL('try','catch')
%
% [X,Y,Z,...] = MEXEVAL(s) returns output arguments from the
% expression in string s. [note: this is a bug!!]
%
% The input strings to MEXEVAL are often created by
% concatenating substrings and variables inside square
% brackets.
%
% See also MEXFEVAL.
% MEX-File function.
% Copyright (c) 1984-98 by The MathWorks, Inc.
% All Rights Reserved.
% $Revision: 1.3 $
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?