Ignore:
Timestamp:
12/23/08 10:36:27 (16 years ago)
Author:
pinsard
Message:

modification according to mlint diagnostic

File:
1 edited

Legend:

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

    r10 r15  
    4747   end; 
    4848   for b=1:122; % boucle sur les jours 
    49       if (b>20 & b<112); % 1ere condition (laisser une marge de 10)  
     49      if (b>20 && b<112); % 1ere condition (laisser une marge de 10)  
    5050% cas 1 : max deltas apres negetifs et deltas avant postifs    
    51          if (delta(b+1)<0 & delta(b)<0 & delta(b-1)>0 & delta(b-2)>0 & olr_eof(b,a)>olrbis);  
     51         if (delta(b+1)<0 && delta(b)<0 && delta(b-1)>0 && delta(b-2)>0 && olr_eof(b,a)>olrbis);  
    5252            compteurmax=compteurmax+1; 
    5353            olr_filtre_compomax(compteurmax,:,:)=olr1(b,a,:,:); 
    5454% cas 2 : min deltas apres positifs et deltas avant negatifs    
    55          elseif (delta(b+1)>0 & delta(b)>0 & delta(b-1)<0 & delta(b-2)<0 & olr_eof(b,a)<(-olrbis)); 
     55         elseif (delta(b+1)>0 && delta(b)>0 && delta(b-1)<0 && delta(b-2)<0 && olr_eof(b,a)<(-olrbis)); 
    5656            compteurmin=compteurmin+1; 
    5757            olr_filtre_compomin(compteurmin,:,:)=olr1(b,a,:,:); 
     
    6060   end;          
    6161end; 
    62 compteurmin_eof23_1030=compteurmin 
    63 compteurmax_eof23_1030=compteurmax 
     62compteurmin_eof23_1030=compteurmin; 
     63compteurmax_eof23_1030=compteurmax; 
    6464 
    6565 
     
    105105set (gca,'XTick',[-180:60:180],'XTickLabel',[' 180';'120W';' 60W';'  0 ';' 60E';'120E';'180 '],'fontname','Arial','fontsize',6); 
    106106set (gca,'YTick',[-10:10:40],'YTickLabel',['10S';' 0 ';'10N';'20N';'30N'],'fontname','Arial','fontsize',6); 
    107 set(gca,'tickDir','out'); 
     107set (gca,'tickDir','out'); 
    108108title('Composite t=0 OLR et Pluies IRD indice ITCZ reconstruit EOF23','fontsize',6); 
    109109 
Note: See TracChangeset for help on using the changeset viewer.