<div dir="ltr"><div><div>Dear NCL,<br><br></div>I am trying to store my output in an iterative loop and I created the variable using new as well. But it gives fill values in the output. I was wondering why that is. I am converting weekly data to daily data via interpolation<br><br>*************************************<br><br>xday=new(47*365,&quot;float&quot;);Variable created to store 47 years of daily data<br><br>do i=0,46<br><br>matching= ind(year_52(i).eq.time_year) ;extracting indices for each year<br><br>sceweek=x(matching);52 /53 weeks snow cover data<br><br>xday= linint1_n (fspan(0,364,dimsizes(sceweek)), sceweek, True, fspan(0,364,365), 0, 0) ; Interpolating weekly to daily data for each year<br>end do <br>*******************************************************************<br><br></div>Thank You<br>Best Regards<br>Ipshita<br></div>