curvey

Returns the Y vector of a curve being exported or a curve in the current plot.

Syntax

curvey(num)

Argument

num
The index of the curve from which to retrieve values.

Example

Templex Expression
{
    ncrvs = numcurves();
    for (i = 0; i < ncrvs; i++)
        yvect = curvey(i);
        npts = numpts(yvect);
        for (j = 0; j < npts; j++)
          yvect[j], %e; cr(); ‘ output Y vector in exponential format
        endloop
     endloop
}

Comments

curvey is used in plotting export templates and plotting notes.