/[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.2 - (hide annotations) (download)
Wed Jun 22 02:13:40 2011 UTC (14 years ago) by gforget
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
FILE REMOVED
- convert2pcol.m and convert2vector.m : as done earlier for convert2array.m,
	simplify the logic, add help section, move routines to gcmfaces_convert
- convert2pcol_cube.m etc., line_greatC_TUV_MASKS_v3, input_list_check.m : update accordingly

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