⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 copy.m

📁 MATLAB中读写、处理科学数据文件格式NETCDF的程序
💻 M
字号:
function theResult = copy(self, theDestination)

% netcdf/copy -- Copy one NetCDF into another.
%  copy(self, theDestination) copies the contents
%   of self, a netcdf or cell, into theDestination,
%   a netcdf.  If self is a cell, the enclosed
%   items are processed in the order given, with
%   variable data copying reserved for last.
 
% Copyright (C) 1997 Dr. Charles R. Denham, ZYDECO.
%  All Rights Reserved.
%   Disclosure without explicit written consent from the
%    copyright owner does not constitute publication.
 
% Version of 20-May-1997 09:09:49.

if nargin < 1, help(mfilename), return, end

result = [];

switch ncclass(theDestination)
case 'netcdf'
   switch ncclass(self)
   case 'cell'
      theItems = self;
   case 'netcdf'
      theItems = [att(self), dim(self), var(self)];
   otherwise
      disp(' ## Incompatible arguments.')
   end
   for i = 1:length(theItems)
      it = theItems{i};
      switch ncclass(it)
      case {'netcdf', 'ncdim', 'ncatt', 'ncrec'}
         result{i} = copy(it, theDestination);
      case 'ncvar'
         result{i} = copy(it, theDestination, 0, 1);
      otherwise
         disp(' ## Incompatible arguments.')
      end
   end
   for i = 1:length(theItems)
      it = theItems{i};
      switch ncclass(it)
      case 'ncvar'
         result{i} = copy(it, theDestination, 1, 0);
      otherwise
      end
   end
otherwise
end

if nargout > 0, theResult = result; end

⌨️ 快捷键说明

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