Ignore:
Timestamp:
08/26/09 11:54:01 (15 years ago)
Author:
pinsard
Message:

production de .ps au lieu de .eps

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/PROGRAMMES/whorldmap.m

    • Property svn:keywords set to Id
    r19 r26  
    4040%  
    4141% $Id$ 
     42% 
     43% - fplod 2009-08-26T09:02:22Z aedon.locean-ipsl.upmc.fr (Darwin) 
     44% 
     45%   * add missing octave warning on Erasemode 
    4246% 
    4347% - fplod 2009-08-25T09:32:28Z aedon.locean-ipsl.upmc.fr (Darwin) 
     
    139143    set(lh,'Erasemode','none'); 
    140144   else 
    141     warning('www : octave do not know Erasemode property') 
     145    warning('www : octave do not know Erasemode property'); 
    142146   end 
    143147   set(gca,'aspect',[1 1]); 
     
    145149 
    146150if (drawtwice), 
    147    line(coastlines(1,:),coastlines(2,:),'Linestyle','-',... 
    148    'Erasemode','none'); 
     151   if ~ exist('OCTAVE_VERSION','builtin') 
     152    line(coastlines(1,:),coastlines(2,:),'Linestyle','-',... 
     153    'Erasemode','none'); 
     154   else 
     155    warning('www : octave do not know Erasemode property'); 
     156    line(coastlines(1,:),coastlines(2,:),'Linestyle','-') 
     157   end 
    149158end; 
    150159 
Note: See TracChangeset for help on using the changeset viewer.