Compile and link the the following ...
void getY(string strCurveY,double xVal)
{
Curve crvMyCurve(strCurveY);
if(crvMyCurve.IsValid()==true)
{
double dXfromY = Curve_yfromX( &crvMyCurve, xVal );
printf( "X = %f, Y = %f\n", xVal,dXfromY);
}
}
Open a graph window in which the dataset is plotted.
Make the dataset of interest the active dataset.
Issue the command GetY(%C,0.25)