<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; color: rgb(0, 0, 0); font-size: 14px; font-family: Calibri, sans-serif;">
<div>NCL-talk,</div>
<div><br>
</div>
<div>I am using the function “regCoef” in a do-loop. &nbsp;X is a 2 dimensional variable of size (/nmon,nyrs/). &nbsp;Y is a 4 dimensional variable of size (/nmon,nyrs,nlat,nlon/). &nbsp;The resulting regression coefficient is 3 dimensional of size (/nmon,nlat,nlon/):</div>
<div><br>
</div>
<div>
<div>; TAS is (/nmon,nyrs,nlat,nlon/)</div>
<div>; NAO is (/nmon,nyrs/)</div>
<div>; nmon = 12; yrs = 30</div>
<div><br>
</div>
<div>; reorder TAS</div>
<div>&nbsp; rTAS = TAS(month|:,lat|:,lon|:,year|:)</div>
<div><br>
</div>
<div>&nbsp; coef = new((/nmon,nlat,nlon/),float)</div>
<div>&nbsp; do i =0,11</div>
<div>&nbsp; coef(i,:,:) = regCoef(NAO(i,:),rTAS(i,:,:,:))</div>
<div>&nbsp; end do</div>
</div>
<div><br>
</div>
<div><br>
</div>
<div>For each “i” I want to archive the&nbsp;<em>rstd</em> (standard error of the estimated regression coefficient), which will be in 1 dimension (nlat* nlon).</div>
<br>
<div>Using the&nbsp;<span class="quotelev1">the special &quot;$” syntax in the loop, doesn’t work. &nbsp;Is there some other special syntax I could use?</span></div>
<div><span class="quotelev1"><br>
</span></div>
<div><span class="quotelev1">Thank you</span></div>
</body>
</html>