Changeset 8735


Ignore:
Timestamp:
06/28/11 07:47:21 (14 years ago)
Author:
Mathieu Morlighem
Message:

cosmetics

Location:
issm/trunk/src/m
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/model/plot/applyoptions.m

    r8728 r8735  
    222222        if exist(options,'colorbartitle'),
    223223                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'));
    225225        end
    226226        if exist(options,'colorbarYLabel'),
  • issm/trunk/src/m/model/radarpower.m

    r6957 r8735  
    99%      md=radarpower(md,options);
    1010%      md=radarpower(md)
     11
     12%If gdal does not work, uncomment the following line
     13%setenv('LD_LIBRARY_PATH','');
    1114
    1215%Parse inputs
  • issm/trunk/src/m/utils/genpath_ice.m

    r1 r8735  
    2727for i=1:length(dirs)
    2828        dirname=dirs(i).name;
    29         if  ~strcmp(dirname,'.')  & ...
     29        if ~strcmp(dirname,'.')    & ...
    3030                ~strcmp(dirname,'..')   & ...
    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
     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
    3535
    36         p = [p genpath_ice(fullfile(d,dirname))];
     36                p = [p genpath_ice(fullfile(d,dirname))];
    3737        end
    3838end
Note: See TracChangeset for help on using the changeset viewer.