Ignore:
Timestamp:
01/07/09 16:49:58 (15 years ago)
Author:
pinsard
Message:

correction of usage of print function, fix side effect of load function

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/mode_sahelien/composite_wind925_sahel.m

    r23 r24  
    331331figure(1) 
    332332orient('landscape') 
    333 status=load('pression.mat'); 
     333status=load('pression.mat','pression'); 
     334pression=status.pression; 
     335clear status; 
    334336 
    335337for e=1:7; 
     
    392394end; 
    393395 
    394 status=print('-depsc2','composite_sahel_1_u700_hgt.eps'); 
     396print('-depsc2','composite_sahel_1_u700_hgt.eps'); 
    395397 
    396398figure(2) 
    397399orient('landscape') 
    398 status=load('pression.mat'); 
     400status=load('pression.mat','pression'); 
     401pression=status.pression; 
     402clear status; 
    399403 
    400404for e=1:7; 
     
    457461end; 
    458462 
    459 status=print('-depsc2','composite_sahel_2_u700_hgt.eps'); 
     463print('-depsc2','composite_sahel_2_u700_hgt.eps'); 
Note: See TracChangeset for help on using the changeset viewer.