From 81a0c260d321da151e244548188d13a963bf111f Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Mon, 11 Feb 2008 21:40:22 -0500 Subject: initialization and import of old files from 8.13 in fall 2006 --- plotting.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 plotting.py (limited to 'plotting.py') diff --git a/plotting.py b/plotting.py new file mode 100644 index 0000000..5f33dd6 --- /dev/null +++ b/plotting.py @@ -0,0 +1,8 @@ + +import pylab; + +justplot = lambda x: pylab.plot(x[:,0],x[:,1]); +justplotdot = lambda x: pylab.plot(x[:,0],x[:,1],'o'); + +justplot_x = lambda x: pylab.plot(range(len(x)),x); +justplotdot_x = lambda x: pylab.plot(range(len(x)),x,'o'); -- cgit v1.2.3