📄 fioparameternames.m
字号:
function ParamterNames = FIOParameterNames(InputCells)
% THe function test if the input is of legal format.
%
% Receives:
% InputCells - cell array - The function input extracted from varargin.
%
% Returns:
% ParamterNames - boolean - True (1) if the input looks valid, False (0) if not.
% ErrorString - string - (optional) The error description or an empty string.
%
% Created:
% Lev Muchnik 26/03/2002,
% +972-54-4326496, LevMuchnik@gmail.com
error(nargchk(1,1,nargin));
error(nargchk(0,1,nargout));
[Success ParamterNames] = FIOTestInput(ParamterNames);
if Success
ParamterNames = InputCells{1:2:end};
else
ParamterNames = {};
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -