att.m
来自「MATLAB中读写、处理科学数据文件格式NETCDF的程序」· M 代码 · 共 33 行
M
33 行
function theResult = att(self, theAttname)
% netcdf/att -- Attributes of a netcdf object.
% att(self, 'theAttname') returns the ncatt object
% whose name is theAttname, associated with self,
% a netcdf object.
% att(self) returns the cell-list of ncatt objects
% associated with self, a netcdf object.
if nargin < 1, help netcdf/att, return, end
result = [];
if nargin == 1
[ndims, nvars, ngatts, recdim, status] = ...
ncmex('inquire', ncid(self));
result = cell(1, ngatts);
for i = 1:ngatts
theAttnum = i-1;
[theAttname, status] = ...
ncmex('attname', ncid(self), varid(self), theAttnum);
result{i} = ncatt(theAttname, self);
end
else
result = ncatt(theAttname, self);
end
if nargout > 0
theResult = result;
else
disp(result)
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?