fatnames.m
来自「MATLAB中读写、处理科学数据文件格式NETCDF的程序」· M 代码 · 共 42 行
M
42 行
function theResult = fatnames(self, theMaxNameLen)
% netcdf/fatnames -- Enable fat-names.
% fatnames(f, theMaxNameLen) makes provision in self,
% a "netcdf" object, for the storage of names up to the
% given maximum length (not to exceed the MAX_NC_NAME
% parameter). The purpose is to allow for the later
% renaming of NetCDF items without forcing the rewriting
% of the NetCDF file itself whenever a new name exceeds
% the length of the original. Set theMaxNameLen to 0
% (zero) to disable the feature (the default behavior).
% The "netcdf" object is returned.
% fatnames(f) returns the present "fatnames" length.
%
% N.B. This routine is experimental at present.
% Copyright (C) 1999 Dr. Charles R. Denham, ZYDECO.
% All Rights Reserved.
% Disclosure without explicit written consent from the
% copyright owner does not constitute publication.
% Version of 13-May-1999 08:46:20.
if nargin < 1, help(mfilename), return, end
self = ncregister(self);
if nargin < 2
result = self.itsMaxNameLen;
else
result = self;
max_nc_name = ncmex('parameter', 'MAX_NC_NAME');
result.itsMaxNameLen = min(max(theMaxNameLen, 0), max_nc_name);
ncregister(result)
end
if nargout > 0
theResult = result;
else
disp(result);
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?