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
Try this:
points([(n,1/n) for n in range(1,101)])
You can use list_plot as well.
Asked: 2013-08-27 13:43:54 +0100
Seen: 3,743 times
Last updated: Aug 27 '13
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.