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/indice_flore/time_serie_histog3_max_moy.m

    r10 r15  
    4545   end; 
    4646   for b=1:122; 
    47       if (b>11 & b<112); % 1ere condition (laisser une marge de 10)  
     47      if (b>11 && b<112); % 1ere condition (laisser une marge de 10)  
    4848%        condition 1 on est a un maximum deltas apres sont negetifs et 
    4949%             delta avant postifs    
    50          if (delta(b+1)<0 & delta(b)>0 & ind_olr(b,a)>1.5);  
     50         if (delta(b+1)<0 && delta(b)>0 && ind_olr(b,a)>1.5);  
    5151             
    5252            compteurmax=compteurmax+1; 
     
    118118 
    119119 
    120          elseif (delta(b+1)>0 & delta(b)<0 & ind_olr(b,a)<-1.5); 
     120         elseif (delta(b+1)>0 && delta(b)<0 && ind_olr(b,a)<-1.5); 
    121121            compteurmin=compteurmin+1; 
    122122            type_temps_compomin(1,compteurmin,1,:)=occu_type_tps(b-10,a,:); 
     
    202202type_temps_moy=reshape(occu_type_tps,3538,4); 
    203203 
    204 compteurmin 
    205 compteurmax 
     204disp(['iii : compteurmin =', int2str(compteurmin)]); 
     205disp(['iii : compteurmax =', int2str(compteurmax)]); 
    206206 
    207207student1=zeros(21,4); 
     
    229229 
    230230% on traduit le nbre d occurence en frequences relatives 
     231kara_min=zeros(21,4); 
     232kara_max=zeros(21,4); 
     233kara_moy=zeros(4); 
     234 
    231235for a=1:21; 
    232236   for b=1:4; 
     
    250254        if student1(a,b)==1; 
    251255           table_ttest(a,b)=kara_diff(a,b); 
    252         else; 
     256        else 
    253257           table_ttest(a,b)=NaN; 
    254258        end; 
     
    277281    set (gca,'YTick',[-20:5:20],'YTickLabel',[-20:5:20],'fontname','Arial','fontsize',6); 
    278282    axis([-10 10 -20 20]); 
    279     set(gca,'tickDir','out'); 
     283    set (gca,'tickDir','out'); 
    280284    if a==1; 
    281285       title('Atl low','Fontsize',8,'Fontname','Arial'); 
     
    284288    elseif a==3; 
    285289       title('NAO-','Fontsize',8,'Fontname','Arial'); 
    286     else;  
     290    else 
    287291       title('Blocking','Fontsize',8,'Fontname','Arial'); 
    288292    end;  
Note: See TracChangeset for help on using the changeset viewer.