Problem with nResults()

Posted by Weller Andrew Francis on
URL: http://imagej.273.s1.nabble.com/Problem-with-nResults-tp3702177.html

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