source: Roms_tools/mexcdf/netcdf_toolbox/netcdf/ncutility/ncwhatsnew.m @ 1

Last change on this file since 1 was 1, checked in by cholod, 13 years ago

import Roms_Agrif

File size: 1.2 KB
Line 
1function ncwhatsnew
2
3% ncwhatsnew -- What's new in the NetCDF Toolbox.
4%  ncwhatsnew emits a "what's new" message the first time
5%   it is called.
6 
7% Copyright (C) 1998 Dr. Charles R. Denham, ZYDECO.
8%  All Rights Reserved.
9%   Disclosure without explicit written consent from the
10%    copyright owner does not constitute publication.
11 
12% Version of 09-Dec-1998 10:47:04.
13% Updated    19-Jul-1999 11:07:43.
14
15global NC_WHATS_NEW_DISPLAYED
16
17if isempty(NC_WHATS_NEW_DISPLAYED) & 0
18        disp(' ')
19        disp(' ## WHAT''S NEW in the NetCDF Toolbox')
20        disp(' ')
21        disp(' ##  Starting January 1, 1999, the "size" function for')
22        disp(' ##  netcdf items will return at least two elements,')
23        disp(' ##  following the Matlab convention.  To get the old')
24        disp(' ##  style of size-vector, use "ncsize".')
25        disp(' ')
26        v = version;
27        if isequal(v(1:3), '5.3')
28                disp(' ##  Matlab v5.3 (Release 11) Alert -- Changes to the')
29                disp(' ##  Matlab object-oriented scheme required that we patch')
30                disp(' ##  the NetCDF Toolbox.  The present toolbox seems to be')
31                disp(' ##  compatible with v5.3.  Please let us know if you notice')
32                disp(' ##  otherwise: <cdenham@usgs.gov> (14Apr1999).')
33                disp(' ')
34        end
35        NC_WHATS_NEW_DISPLAYED = 1;
36end
Note: See TracBrowser for help on using the repository browser.