measure2

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

measure2

Johannes Breu
Hi,

in order to get values out of a result table I tried:


             run("Measure");

              a= getResult("IntDent", nResults);
              print (a);

I always get an error message:

Row (1) out of range in line 40.
a= getResult("IntDent", nResults<)>;

I do not find the error.

Thanks
Reply | Threaded
Open this post in threaded view
|

Re: measure2

Justin McGrath
Hi Johannes,
nResults is the number of rows in the results table, but getResults()
requires the index of the row, starting at 0.  Therefore you need to
use nResults - 1 to get the last result.  Also, I believe the column
heading for Integrated Density is IntDen, not IntDent.  The following
should work.

          run("Measure");

             a= getResult("IntDen", nResults - 1);
             print (a);

Justin

On Mon, Sep 29, 2008 at 11:14 AM, Johannes Breu <[hidden email]> wrote:

> Hi,
>
> in order to get values out of a result table I tried:
>
>
>             run("Measure");
>
>              a= getResult("IntDent", nResults);
>              print (a);
>
> I always get an error message:
>
> Row (1) out of range in line 40.
> a= getResult("IntDent", nResults<)>;
>
> I do not find the error.
>
> Thanks
>