<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-2" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Kristian,<br>
<br>
One possibility is to try:<br>
<br>
a.count=subwrd(result,3)<br>
<br>
this will generate a subscripted array "a" with ten values, for your
example.  Here is some documentation from<br>
<a class="moz-txt-link-freetext" href="http://grads.iges.org/grads/gadoc/script.html#variables">http://grads.iges.org/grads/gadoc/script.html#variables</a><br>
<br>
------------------------------------------------------------------------------------------------------------------------------------------------<br>
<p><i><b>Compound string variables</b></i>
</p>
<p>Compound variables are used to construct arrays in scripts. A
compound
variable has a variable name with segments separated by periods. For
example:
</p>
<p></p>
<ul>
  <code>varname.i.j</code>
</ul>
<p>
In this case, when the variable contents are accessed,
<code>i</code> and <code>j</code> will be looked up to see if they are
also variables (non-compound). If they are, the <code>i</code> and
<code>j</code> will be replaced by the string values of <code>i</code>
and <code>j</code>. For example:
</p>
<p></p>
<ul>
  <code>i = 10 <br>
j = 3 <br>
varname.i.j = 343</code>
</ul>
<p>
In the above example, the assignment is equivalent to:
</p>
<p></p>
<ul>
  <code>varname.10.3 = 343</code>
</ul>
<p>
Note that the string values of <code>i</code> and <code>j</code> may
be anything, but the variable name specification in the script must
follow the rules for variable names: letters or numbers, with a
leading letter. The variable name after substitution may be any
string:
</p>
<p></p>
<ul>
  <code>i = 'a#$xx' <br>
varname.i = 343</code>
</ul>
<p>
The above is valid. However, we cannot refer to this variable
name directly:
</p>
<p></p>
<ul>
  <code>varname.a#$xx = 343</code>
</ul>
<p>
would be invalid.
</p>
<p>Variable names may <i>not</i> be longer than 16 characters, either
before or after substitution.
</p>
<p>Note that the GrADS scripting language is not particularly
efficient in handling large numbers of variables. Thus compound
variables should not be used to create large arrays:
</p>
<p></p>
<ul>
  <code>i = 1 <br>
while (i &lt; 10000) <br>
   var.i = i <br>
   i = i + 1 <br>
endwhile
  </code>
</ul>
<p>
The above loop will create 10000 distinct variable names. Such
a large number of variables in the variable chain will slow the
script down a lot. </p>
------------------------------------------------------------------------------------------------------------------------------------------------<br>
<br>
I hope this helps,<br>
Chuck<br>
<br>
<br>
Kristian Horvath wrote:
<blockquote cite="mid001201c519c3$dbdf78a0$f10114ac@dhz.hr" type="cite">
  <meta http-equiv="Content-Type" content="text/html; ">
  <meta content="MSHTML 6.00.2600.0" name="GENERATOR">
  <style></style>
  <div><font face="Arial" size="2">Dear GrADS people,</font></div>
  <div> </div>
  <div><font face="Arial" size="2">I would like to write a while loop
and every time when passing the loop remember the value of a variable
for manipulation after the loop.</font></div>
  <div> </div>
  <div><font face="Arial" size="2">Something like:</font></div>
  <div> </div>
  <div><font face="Arial" size="2">count=1</font></div>
  <div><font face="Arial" size="2">while ( count &lt;= 10 )</font> </div>
  <div><font face="Arial" size="2">'d pslv/100'<br>
 'q pos'<br>
 a=subwrd(result,3)</font></div>
  <div><font face="Arial" size="2">count=count+1</font></div>
  <div><font face="Arial" size="2">endwhile</font></div>
  <div> </div>
  <div><font face="Arial" size="2">where I would like to have values of
a(1), a(2)...a(10) after in the script.</font></div>
  <div> </div>
  <div><font face="Arial" size="2">I would appreciate any suggestions,</font></div>
  <div><font face="Arial" size="2">Cheers,</font></div>
  <div><font face="Arial" size="2">Kristian</font></div>
  <div> </div>
  <div><font face="Arial" size="2">_________________________________________</font></div>
  <div> </div>
  <div><font face="Arial" size="2">Kristian Horvath<br>
research fellow<br>
Croatian Meteorological and Hydrological Service</font></div>
  <div> </div>
</blockquote>
<br>
<pre class="moz-signature" cols="72">--

********************************************************************
 Charles Seman                                <a class="moz-txt-link-abbreviated" href="mailto:Charles.Seman@noaa.gov">Charles.Seman@noaa.gov</a>
 U.S. Department of Commerce / NOAA / OAR
 Geophysical Fluid Dynamics Laboratory         voice: (609) 452-6547
 201 Forrestal Road                              fax: (609) 987-5063
 Princeton, NJ  08542                 <a class="moz-txt-link-freetext" href="http://www.gfdl.noaa.gov/~cjs/">http://www.gfdl.noaa.gov/~cjs/</a>
********************************************************************

"The contents of this message are mine personally and do not reflect
any position of the Government or NOAA."
</pre>
</body>
</html>