OK, I've figured the last component:
n = nResults;
print(n);
Area = newArray(n);
for (i=0; i<n; i++) {
Area[i] = getResult("Area", i);
}
but for some reason my "n" is still "0" even though there's data there.
Any suggestions?
Thanks, Andy
On Wed, 2006-07-12 at 17:30 +0200, Weller Andrew Francis wrote:
> Dear all,
>
> I am trying to read in information from the results table, although this has data contained in it (5 columns, 9 rows), if I run:
>
> n = nResults();
>
> or
>
> n = nResults;
>
> n always equals 0...?!?
>
> As an add on, as I would like to store multiple rows from a loop, I would like to increment their variable container. So, in the following example:
>
> for (i=0; i<nResults; i++) {
> Area+i = getResult("Area", i);
>
> }
>
> I would like the Area variables to be stored as "Area0", "Area1", etc. Is this possible?
>
> Many thanks, Andy