I have determined the results from a parametric integration, I want to know how to get a tabulated numerical (x, y) output. I can get the "y" values but can't get the (x, y) listed output.
luke
Here, by example:
In[15]:= Table[{x, x^2}, {x, 0, 5, 1}]
Out[15]= {{0, 0}, {1, 1}, {2, 4}, {3, 9}, {4, 16}, {5, 25}}