<div dir="ltr"><div><div><div>When you get this type of error, you can debug by adding the following *before* the statement that causes the error.<br><br></div>  printVarSummary(dailyT2avg(ifil,:,:))  <br><br></div>  test_0 = dim_max_n(temp,0)<br></div>  printVarSummary(test_0)<br><br><div><div><div>  test_1  = (dim_max_n_Wrap(temp,0)+dim_min_n_Wrap(temp,0))/2.0<br></div><div>  printVarSummary(test_1)<br><br></div><div>Look at the dimension sizes<br></div><div><br>dailyT2avg(ifil,:,:) = (dim_max_n_Wrap(temp,0)+dim_min_n_Wrap(temp,0))/2.0<br><br>===<br></div><div>Further you gain nothing by using the _Wrap versions of the code. The computations eliminate meta data.<br><br>dailyT2avg(ifil,:,:) = (dim_max_n_Wrap(temp,0)+dim_min_n_Wrap(temp,0))/2.0<br><br>===<br><br></div><div>I suggest <br><br></div><div>    tavg = (dim_max_n(temp,0) + dim_min_n(temp,0))/2.0<br></div><div>    printVarSummary(tavg)   &#39; look at dimensionality<br></div><div><br><br></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Mar 3, 2016 at 12:58 PM, Ashish Sharma <span dir="ltr">&lt;<a href="mailto:asharma7@nd.edu" target="_blank">asharma7@nd.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi users,<div><br></div><div>I am trying to do a simple average. Rather than using &quot;<font face="Menlo"><span style="font-size:11px">dim_vg_n_Wrap&quot;,</span></font> I need to do average of maximum and minimum values. </div><div> </div><div>Can I not do average like this?</div><div><p style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">dailyT2avg(ifil,:,:) = (dim_max_n_Wrap(temp,0)+dim_min_n_Wrap(temp,0))/2.0</p></div><div><br></div><div>It is giving me the following error. </div><div><p style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">fatal:Dimension size mismatch on subscript #1, left-hand and right-hand side dimensions do not match</p></div><div><br></div><div><br></div><div>best,</div><div>Ashish </div></div>
<br>_______________________________________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>