/[MITgcm]/MITgcm_contrib/gael/matlab_class/@gcmfaces/convert2pcol.m
ViewVC logotype

Annotation of /MITgcm_contrib/gael/matlab_class/@gcmfaces/convert2pcol.m

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (hide annotations) (download)
Wed Feb 10 14:43:47 2010 UTC (15 years, 5 months ago) by gforget
Branch: MAIN
matlab_class core routine: gcmfaces methods

1 gforget 1.1 function [X,Y,FLD]=convert2pcol(varargin);
2    
3     c=varargin{1};
4    
5     if strcmp(c.gridType,'llc');
6     [X,Y,FLD]=convert2pcol_llc(varargin{:});
7     elseif strcmp(c.gridType,'cube');
8     [X,Y,FLD]=convert2pcol_cube(varargin{:});
9     elseif strcmp(c.gridType,'llpc');
10     [X,Y,FLD]=convert2pcol_llpc(varargin{:});
11     elseif strcmp(c.gridType,'ll');
12     [X,Y,FLD]=convert2pcol_ll(varargin{:});
13     else;
14     error(['convert2pcol not implemented for ' c.gridType '!?']);
15     end;
16    

  ViewVC Help
Powered by ViewVC 1.1.22