<div dir="ltr">I am writing a loop to calculate mean every 10 indices and there is an error towards the end of the loop. It would be great if you could help me sort it out<br><div><br>;This is to create decadal mean<br><br>
load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl&quot;<br><br>ncol = 12<br>nrows=134<br><br>air=readAsciiTable(&quot;~/Documents/PhD_June_2015/Data_AIR/air.txt&quot;, ncol, &quot;integer&quot;,2)<br><br>ya = dim_avg_n(air,1)   ;yearly average <br>
<br>i=0<br>j=0<br>k=0<br><br>da=new(5,&quot;float&quot;)<br><br>do while (i.le.133)<br><br>if (i/1.eq.1+j) then<br><br>da=dim_avg_n(ya(k:i),1)<br><br>k=k+10<br><br>j=j+1<br>continue<br>end if<br><br><br>i=i+1<br><br>end do<br>
</div></div>