--- a/plotting_using_sage/quickref.tex Tue Oct 12 10:53:33 2010 +0530
+++ b/plotting_using_sage/quickref.tex Tue Oct 12 11:09:52 2010 +0530
@@ -1,11 +1,30 @@
-Creating a tuple:\\
-{\ex \lstinline| t = (1, "hello", 2.5)|}
+Plot simple 2D functions on a linear range of x:\\
+{\ex \lstinline| plot(f(x), (x, 0, 2*pi)|}
+
+Plot 2D plots where x and y are functions of another variable:\\
+{\ex \lstinline| parametric_plot((f_x, f_y), (x, 0, 2*pi), (y, 0, 2*pi))|}
-Accessing elements of tuples:\\
-{\ex \lstinline| t[index] Ex: t[2]|}
+Generate a sequence of points with a given seperation:\\
+{\ex \lstinline| points = srange(2.5, 5.5, 0.25)|}
+
+Plot a line joining a list of pairs of points:\\
+{\ex \lstinline| line(list_pairs)|}
+
+Show the plots:\\
+{\ex \lstinline| show(plot_name)|}
-Accessing slices of tuples:\\
-{\ex \lstinline| t[start:stop:step]|}
+Show multiple plots:\\
+{\ex \lstinline| show(p1+p2+p3)|}
+
+Set x-axis limits:\\
+{\ex \lstinline| show(p1+p2, xmim=0, xmax=2*pi)|}
-Swapping values:\\
-{\ex \lstinline| a, b = b, a|}
+Set y-axis limits:\\
+{\ex \lstinline| show(p1+p2, ymim=-1.2, ymax=1.2)|}
+
+Plot 3D functions:\\
+{\ex \lstinline| plot3d(f(x, y), (x, 0, 2*pi), (y, -1, 1))|}
+
+Plot 3D functions where x, y, z are functions of another variable:\\
+{\ex \lstinline| parametric_plot3d((f_x, f_y, f_z), (t, 0, 10))|}
+