ncwhatsnew.m
来自「MATLAB中读写、处理科学数据文件格式NETCDF的程序」· M 代码 · 共 37 行
M
37 行
function ncwhatsnew
% ncwhatsnew -- What's new in the NetCDF Toolbox.
% ncwhatsnew emits a "what's new" message the first time
% it is called.
% Copyright (C) 1998 Dr. Charles R. Denham, ZYDECO.
% All Rights Reserved.
% Disclosure without explicit written consent from the
% copyright owner does not constitute publication.
% Version of 09-Dec-1998 10:47:04.
% Updated 19-Jul-1999 11:07:43.
global NC_WHATS_NEW_DISPLAYED
if isempty(NC_WHATS_NEW_DISPLAYED) & 0
disp(' ')
disp(' ## WHAT''S NEW in the NetCDF Toolbox')
disp(' ')
disp(' ## Starting January 1, 1999, the "size" function for')
disp(' ## netcdf items will return at least two elements,')
disp(' ## following the Matlab convention. To get the old')
disp(' ## style of size-vector, use "ncsize".')
disp(' ')
v = version;
if isequal(v(1:3), '5.3')
disp(' ## Matlab v5.3 (Release 11) Alert -- Changes to the')
disp(' ## Matlab object-oriented scheme required that we patch')
disp(' ## the NetCDF Toolbox. The present toolbox seems to be')
disp(' ## compatible with v5.3. Please let us know if you notice')
disp(' ## otherwise: <cdenham@usgs.gov> (14Apr1999).')
disp(' ')
end
NC_WHATS_NEW_DISPLAYED = 1;
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?