numel_default.m

来自「MATLAB中读写、处理科学数据文件格式NETCDF的程序」· M 代码 · 共 19 行

M
19
字号
function theResult = numel_default(varargin)

% class/numel_default -- Default NUMEL method.
%  numel_default(...) returns a value of 1.
%   It gets called by our overloaded NUMEL
%   methods, on the hope that, up to now, we
%   have always expected SUBSREF and SUBSASGN
%   to deliver or accept just one argument.
 
% Copyright (C) 2001 Dr. Charles R. Denham, ZYDECO.
%  All Rights Reserved.
%   Disclosure without explicit written consent from the
%    copyright owner does not constitute publication.
 
% Version of 30-Jul-2001 15:49:47.
% Updated    30-Jul-2001 15:49:47.

theResult = 1;   % Keep fingers crossed.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?