My impression was that you might want a point-and-click interface to select points, after generating a plot like so:
f[x_] = x^3 - x;
plot = Plot[f[x], {x, -1.3, 1.3}]
Now, the following code sets up a graphic that allows you to click and drag to get points on the graph.
p = {0, f[0]};
bag = Internal`Bag[];
Labeled[EventHandler[
Show[plot, Epilog -> {PointSize[Large], Red,
Point[Dynamic[{p[[1]], f[p[[1]]]}]]}],
"MouseDragged" :> (pt = MousePosition["Graphics"];
If[Abs[pt[[2]] - f[pt[[1]]]] < 0.1, p = pt;
Internal`StuffBag[bag, p]])],
Dynamic[p]]

The label is dynamically updated to reflect the value of the point on the graph near the mouse position. The results are stored in the bag, which you can access as follows.
Internal`BagPart[bag, All]
(* Out: {{0.618387, -0.341731}, {0.623414, -0.341731},
{0.623414, -0.330505}, {0.628442, -0.330505},
{0.633469, -0.330505}, {0.643525, -0.330505},
{0.648552, -0.330505}, {0.65358, -0.330505}} *)
Plot? Are you looking for image-manipulation techniques? (If so, I'm out.) – VF1 Nov 7 '12 at 4:26Table[{x, x^2}, {x, 0, 4, .1}]is what you're looking for? – VF1 Nov 7 '12 at 4:41