Hi Jie,
You can perform interpolation of single values through range notation on the curve. For example, there are two points (1, 1) and (2, 2) in the curve, then you can use the following script to calculate the y value for the given x=1.5.
range rr = 1; // get the first curve on the graph
rr(1.5) = ; // get y for 1.5 by interpolation
For more details, please refer to Interpolation.
Penn