Changeset 8735
- Timestamp:
- 06/28/11 07:47:21 (14 years ago)
- Location:
- issm/trunk/src/m
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/model/plot/applyoptions.m
r8728 r8735 222 222 if exist(options,'colorbartitle'), 223 223 set(get(c,'title'),'FontSize',getfieldvalue(options,'colorbarfontsize',fontsize),'String',getfieldvalue(options,'colorbartitle'),... 224 'Color',getfieldvalue(options,'FontColor','k') ,'Interpreter',getfieldvalue(options,'Interpreter','none'),'Interpreter','Tex');224 'Color',getfieldvalue(options,'FontColor','k')); 225 225 end 226 226 if exist(options,'colorbarYLabel'), -
issm/trunk/src/m/model/radarpower.m
r6957 r8735 9 9 % md=radarpower(md,options); 10 10 % md=radarpower(md) 11 12 %If gdal does not work, uncomment the following line 13 %setenv('LD_LIBRARY_PATH',''); 11 14 12 15 %Parse inputs -
issm/trunk/src/m/utils/genpath_ice.m
r1 r8735 27 27 for i=1:length(dirs) 28 28 dirname=dirs(i).name; 29 if ~strcmp(dirname,'.')& ...29 if ~strcmp(dirname,'.') & ... 30 30 ~strcmp(dirname,'..') & ... 31 ~strcmp(dirname,'.svn') & ...32 ~strcmp(dirname,'CVS') & ...33 ~strncmp(dirname,'@',1) & ... %Method directories not allowed in MATLAB path34 ~strcmp(dirname,'private') 31 ~strcmp(dirname,'.svn') & ... 32 ~strcmp(dirname,'CVS') & ... 33 ~strncmp(dirname,'@',1) & ... %Method directories not allowed in MATLAB path 34 ~strcmp(dirname,'private') %private directories not allowed in MATLAB path 35 35 36 p = [p genpath_ice(fullfile(d,dirname))];36 p = [p genpath_ice(fullfile(d,dirname))]; 37 37 end 38 38 end
Note:
See TracChangeset
for help on using the changeset viewer.