]> Creatis software - CreaPhase.git/blob - octave_packages/octcdf-1.1.4/ncfillval.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / octcdf-1.1.4 / ncfillval.m
1 ## Copyright (C) 2009 Alexander Barth <barth.alexander@gmail.com>
2 ##
3 ## This program is free software; you can redistribute it and/or modify
4 ## it under the terms of the GNU General Public License as published by
5 ## the Free Software Foundation; either version 2 of the License, or
6 ## (at your option) any later version.
7 ##
8 ## This program is distributed in the hope that it will be useful,
9 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
10 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 ## GNU General Public License for more details.
12 ##
13 ## You should have received a copy of the GNU General Public License
14 ## along with this program; If not, see <http://www.gnu.org/licenses/>.
15
16 ## -*- texinfo -*-
17 ## @deftypefn {Loadable Function} {@var{fillvalue} = } ncfillval (@var{ncvar})
18 ## @deftypefnx {Loadable Function} ncfillval(@var{ncvar},@var{fillvalue})
19 ## returns or sets the @var{fillvalue} of the NetCDF variable @var{ncvar}.
20 ## @end deftypefn
21 ## @seealso{netcdf}
22
23 ## Author: Alexander Barth <barth.alexander@gmail.com>
24
25 function varargout = ncfillval(varargin);
26
27 varargout = {};
28
29 if nargin == 1
30   ncvar = varargin{1};
31   varargout{1} = ncvar.FillValue_;
32 elseif nargin == 2
33   ncvar = varargin{1};
34   fv = varargin{2};
35   
36   ncvar.FillValue_ = fv;  
37 else
38   error('ncfillval: wrong number of arguments');
39 end
40