<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'><font face="Calibri,sans-serif" color="#000000"><div><span style="font-size: 21.3333339691162px;">t is a variable of lat and lon (90,180)</span></div><div><span style="font-size: 21.3333339691162px;">t1 is an index created in another grid lat and lon&nbsp;</span></div><div><span style="font-size: 21.3333339691162px;"><br></span></div><div><span style="font-size: 21.3333339691162px;">I want to examine how this index is correlated with the variable in the grid variable (t) and not in t1 grid,&nbsp;</span><span style="font-size: 21.3333339691162px;">and make a significance test, if I could use only DOF1, for this case?</span></div></font><br><br><div><hr id="stopSpelling">From: abrammer@albany.edu<br>Date: Mon, 11 May 2015 14:36:35 -0400<br>Subject: Re: [ncl-talk] Dimension size, for dimension number 0, of operands does not match<br>To: vanucia-schumacher@hotmail.com<br>CC: ncl-talk@ucar.edu<br><br><div dir="ltr"><div class="ecxgmail_default" style="font-family:verdana,sans-serif;">You need to work out/ decide how t and t1 relate to each other. &nbsp;</div><div class="ecxgmail_default" style="font-family:verdana,sans-serif;"><br></div><div class="ecxgmail_default" style="font-family:verdana,sans-serif;">Is t1 a subset of t?</div><div class="ecxgmail_default" style="font-family:verdana,sans-serif;">Is it coarser resolution?&nbsp;</div><div class="ecxgmail_default" style="font-family:verdana,sans-serif;">How does t(25,36,10) actually relate to t1 ?&nbsp;</div><div class="ecxgmail_default" style="font-family:verdana,sans-serif;"><br></div><div class="ecxgmail_default" style="font-family:verdana,sans-serif;">Rhetorical questions for you to answer yourself.&nbsp; Not sure how one would compare two geographical grids with such different dimensions unless it is a subset.&nbsp; In which case you should subset t to be the same area as t1.&nbsp;</div><div class="ecxgmail_default" style="font-family:verdana,sans-serif;"><br></div><div class="ecxgmail_default" style="font-family:verdana,sans-serif;">dof1 and dof2 are created from t &amp; t1 so fixing t &amp; t1 will fix dof1 &amp; dof2 issues.&nbsp;<br></div><div class="ecxgmail_default" style="font-family:verdana,sans-serif;"><br></div><div class="ecxgmail_default" style="font-family:verdana,sans-serif;">Alan.&nbsp;</div><div class="ecxgmail_default" style="font-family:verdana,sans-serif;"><br></div></div><div class="ecxgmail_extra"><br><div class="ecxgmail_quote">On 11 May 2015 at 14:29, Vanúcia Schumacher <span dir="ltr">&lt;<a href="mailto:vanucia-schumacher@hotmail.com" target="_blank">vanucia-schumacher@hotmail.com</a>&gt;</span> wrote:<br><blockquote class="ecxgmail_quote" style="border-left:1px #ccc solid;padding-left:1ex;">


<div><div dir="ltr"><div style="font-size:21.3333339691162px;">NCL users,</div><div style="font-size:21.3333339691162px;"><br></div><div style="font-size:21.3333339691162px;"><br></div><div style="font-size:21.3333339691162px;">I need to calculate the correlation between two variables with different lat and lon. But when I try to calculate the significance test this correlation appears this error:</div><div style="font-size:21.3333339691162px;"><br></div><div><div><span style="font-size:21.3333339691162px;"><font color="#ac193d">Dimension size, for dimension number 0, of operands does not match, can't continue</font></span></div></div><div style="font-size:21.3333339691162px;"><br></div><div style="font-size:21.3333339691162px;"><br></div><div style="font-size:21.3333339691162px;">I understand that the error is due to DOF1 and dof2 have different sizes of lat and lon, but how could I solve it in this case?</div><div style="font-size:21.3333339691162px;"><br></div><div style="font-size:21.3333339691162px;">My code:</div><div style="font-size:21.3333339691162px;"><br></div><div style="font-size:21.3333339691162px;">....</div><div style="font-size:21.3333339691162px;"><br></div><div><div><span style="font-size:21.3333339691162px;">&nbsp;r &nbsp; = escorc( t, t1 ) &nbsp; ; correlation</span></div><div><span style="font-size:21.3333339691162px;">cor= r(:,:,0,0)</span></div><div><span style="font-size:21.3333339691162px;">copy_VarCoords(t,cor)</span></div><div><br></div><div><span style="font-size:21.3333339691162px;">; Calculate degrees of freedom for each time series pair</span></div><div><span style="font-size:21.3333339691162px;">; This estimates the dof in autocorrelated series.&nbsp;</span></div><div><span style="font-size:21.3333339691162px;">&nbsp;&nbsp;</span></div><div><span style="font-size:21.3333339691162px;">&nbsp; siglvl = 0.05</span></div><div><span style="font-size:21.3333339691162px;">&nbsp; dof1 &nbsp; = equiv_sample_size (t, siglvl,0)</span></div><div><span style="font-size:21.3333339691162px;">&nbsp; dof2 &nbsp; = equiv_sample_size (t1, siglvl,0)</span></div><div><br></div><div><span style="font-size:21.3333339691162px;">&nbsp;; For each grid point time series pair, choose the lesser abs value</span></div><div><span style="font-size:21.3333339691162px;">&nbsp;</span></div><div><span style="font-size:21.3333339691162px;"><font color="#ac193d">&nbsp; dof &nbsp;= where(abs(dof1).le.abs(dof2), dof1, dof2) &nbsp; error line</font></span></div><div><span style="font-size:21.3333339691162px;"><br></span></div><div><span style="font-size:21.3333339691162px;">&nbsp; copy_VarCoords(cor,dof)</span></div><div><br></div><div><span style="font-size:21.3333339691162px;">&nbsp; rsig = rtest( cor, round(dof,3), 0) &nbsp; &nbsp;; r test NCL</span></div><div><span style="font-size:21.3333339691162px;">...</span></div><div><span style="font-size:21.3333339691162px;"><br></span></div><div><span style="font-size:21.3333339691162px;"><br></span></div><div><div><span style="font-size:21.3333339691162px;">Variable: t</span></div><div><span style="font-size:21.3333339691162px;">Type: float</span></div><div><span style="font-size:21.3333339691162px;">Total Size: 1944000 bytes</span></div><div><span style="font-size:21.3333339691162px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 486000 values</span></div><div><span style="font-size:21.3333339691162px;">Number of Dimensions: 3</span></div><div><span style="font-size:21.3333339691162px;">Dimensions and sizes:<span style="white-space:pre-wrap;">        </span>[lat | 90] x [lon | 180] x [time | 30]</span></div><div style="font-size:21.3333339691162px;"><br></div></div><div><div><span style="font-size:21.3333339691162px;">Variable: t1</span></div><div><span style="font-size:21.3333339691162px;">Type: float</span></div><div><span style="font-size:21.3333339691162px;">Total Size: 7920 bytes</span></div><div><span style="font-size:21.3333339691162px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1980 values</span></div><div><span style="font-size:21.3333339691162px;">Number of Dimensions: 3</span></div><div><span style="font-size:21.3333339691162px;">Dimensions and sizes:<span style="white-space:pre-wrap;">        </span>[lat | 6] x [lon | 11] x [time | 30]</span></div><div><span style="font-size:21.3333339691162px;">Coordinates:&nbsp;</span></div><div style="font-size:21.3333339691162px;"><br></div></div><div><span style="font-size:21.3333339691162px;">&nbsp;&nbsp;Variable: r</span></div><div><span style="font-size:21.3333339691162px;">Type: float</span></div><div><span style="font-size:21.3333339691162px;">Total Size: 4276800 bytes</span></div><div><span style="font-size:21.3333339691162px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1069200 values</span></div><div><span style="font-size:21.3333339691162px;">Number of Dimensions: 4</span></div><div><span style="font-size:21.3333339691162px;">Dimensions and sizes:<span style="white-space:pre-wrap;">        </span>[90] x [180] x [6] x [11]</span></div><div><span style="font-size:21.3333339691162px;">Coordinates:&nbsp;</span></div><div><span style="font-size:21.3333339691162px;">Number Of Attributes: 1</span></div><div><span style="font-size:21.3333339691162px;"><br></span></div><div><div><span style="font-size:21.3333339691162px;">Variable: cor</span></div><div><span style="font-size:21.3333339691162px;">Type: float</span></div><div><span style="font-size:21.3333339691162px;">Total Size: 64800 bytes</span></div><div><span style="font-size:21.3333339691162px;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 16200 values</span></div><div><span style="font-size:21.3333339691162px;">Number of Dimensions: 2</span></div><div><span style="font-size:21.3333339691162px;">Dimensions and sizes:<span style="white-space:pre-wrap;">        </span>[lat | 90] x [lon | 180]</span></div><div style="font-size:21.3333339691162px;"><br></div></div><div><br></div><div><div>Variable: dof1</div><div>Type: integer</div><div>Total Size: 64800 bytes</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 16200 values</div><div>Number of Dimensions: 2</div><div>Dimensions and sizes:<span style="white-space:pre-wrap;">        </span>[90] x [180]</div><div>Coordinates:&nbsp;</div><div><br></div><div>Variable: dof2</div><div>Type: integer</div><div>Total Size: 264 bytes</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 66 values</div><div>Number of Dimensions: 2</div><div>Dimensions and sizes:<span style="white-space:pre-wrap;">        </span>[6] x [11]</div></div><div><br></div><div style="font-size:21.3333339691162px;"><br></div></div>                                               </div></div>
<br>_______________________________________________<br>
ncl-talk mailing list<br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div></div>                                               </div></body>
</html>