- Timestamp:
- 06/13/09 20:52:46 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/test/Verification/IceShelfIceFrontP3d_5/updatearchive.m
r913 r996 5 5 % varargout=updatearchive(varargin); 6 6 % 7 % Example :7 % Examples: 8 8 % updatearchive; 9 9 % updatearchive({'ice'}); 10 % updatearchive({'ice','cielo_serial'} );10 % updatearchive({'ice','cielo_serial'},{'diagnostic'}); 11 11 % md=updatearchive({'cielo_parallel'}); 12 12 % … … 20 20 % Just commit the result if you want to. 21 21 22 %check arguments 23 if (nargin>2 | nargout>1) 24 help updatearchive 25 error('updatearchive error message: bad usage'); 26 end 27 22 28 %packages and analysis_types to be tested 23 if nargin==1, 29 if nargin==2, 30 solutions=varargin{2}; 31 else 32 solutions={'diagnostic','thermalsteady','thermaltransient','prognostic','transient'}; 33 end 34 if nargin, 24 35 packages=varargin{1}; 25 36 else 26 37 packages={'macayeal','ice','cielo_serial','cielo_parallel'}; 27 38 end 28 solutions={'diagnostic','thermalsteady','thermaltransient','prognostic','transient'};29 39 30 40 %go through the solutions requested
Note:
See TracChangeset
for help on using the changeset viewer.