Plotting Sequence of Points
How do I plot the sequence {1/n} for n = 1 to 100 in Sage? I browsed plot?, but didn't see it as an option, or I didn't know what it was called.
add a comment
How do I plot the sequence {1/n} for n = 1 to 100 in Sage? I browsed plot?, but didn't see it as an option, or I didn't know what it was called.
Try this:
points([(n,1/n) for n in range(1,101)])
You can use list_plot
as well.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2013-08-27 13:43:54 +0100
Seen: 3,531 times
Last updated: Aug 27 '13