switchsafe.m
来自「MATLAB中读写、处理科学数据文件格式NETCDF的程序」· M 代码 · 共 24 行
M
24 行
function theResult = switchsafe(x)
% switchsafe -- Make an empty item safe for "switch" command.
% switchsafe(x) returns a version of x, where x is empty,
% that is safe to use in a "switch" statement.
% Copyright (C) 2002 Dr. Charles R. Denham, ZYDECO.
% All Rights Reserved.
% Disclosure without explicit written consent from the
% copyright owner does not constitute publication.
% Version of 19-Mar-2002 14:58:56.
% Updated 08-Apr-2002 10:46:04.
if nargin < 1, help(mfilename), return, end
if isempty(x), x = ''; end
if nargout > 0
theResult = x;
else
assignin('caller', 'ans', x)
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?