source: Roms_tools/mexcdf/netcdf_toolbox/netcdf/@ncbrowser/numel.m @ 1

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

import Roms_Agrif

File size: 650 bytes
Line 
1function theResult = numel(varargin)
2
3% class/numel -- Overloaded NUMEL.
4%  numel(varargin) is called by Matlab 6.1+ during SUBSREF
5%   and SUBSASGN operations to figure out how many output
6%   and input arguments to expect, respectively.  We
7%   believe the answer should always be 1, in keeping
8%   with the way we have traditionally programmed.
9 
10% Copyright (C) 2001 Dr. Charles R. Denham, ZYDECO.
11%  All Rights Reserved.
12%   Disclosure without explicit written consent from the
13%    copyright owner does not constitute publication.
14 
15% Version of 30-Jul-2001 15:45:20.
16% Updated    30-Jul-2001 15:45:20.
17
18theResult = numel_default(varargin{:});
Note: See TracBrowser for help on using the repository browser.