Group Abstract Group Abstract

Message Boards Message Boards

0
|
6.5K Views
|
2 Replies
|
2 Total Likes
View groups...
Share
Share this post:

Tabulated output from a computation

Posted 12 years ago

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

Attachments:
2 Replies
POSTED BY: Nasser M. Abbasi
Posted 12 years ago

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}}

POSTED BY: David Keith
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard