<div dir="ltr"><div><div><div>Hello all,<br></div>I am just wondering if there is an easy way to tell the "sum" and "avg" functions NOT ignore the missing values. Below lines clarify my question where I would like to see same values for c and d:<br><br>ncl 0> a = (/(/-9.,2,-9./),(/1,-9.,2./)/)<br>ncl 1> a@_FillValue = -9.                 <br>ncl 2> c = (a(0,:)+a(1,:))<br>ncl 3> d = dim_sum_n(a,0)<br>ncl 4> print("  "+c+ " ... "+d)<br>(0)       -9 ... 1<br>(1)       -9 ... 2<br>(2)       -9 ... 2<br><br></div>Thanks,<br></div>Rashed<br><div><div><div><br></div></div></div></div>