Revision: 4948
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4948&view=rev
Author:   jrevans
Date:     2008-02-08 09:56:12 -0800 (Fri, 08 Feb 2008)

Log Message:
-----------
Removed a reference to nx, replaced with numpy.

Modified Paths:
--------------
    branches/v0_91_maint/examples/units/units_sample.py

Modified: branches/v0_91_maint/examples/units/units_sample.py
===================================================================
--- branches/v0_91_maint/examples/units/units_sample.py 2008-02-06 14:03:15 UTC 
(rev 4947)
+++ branches/v0_91_maint/examples/units/units_sample.py 2008-02-08 17:56:12 UTC 
(rev 4948)
@@ -8,9 +8,10 @@
 
 """
 from basic_units import cm, inch
-from pylab import figure, show, nx
+from pylab import figure, show
+import numpy
 
-cms = cm *nx.arange(0, 10, 2)
+cms = cm *numpy.arange(0, 10, 2)
 
 fig = figure()
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Matplotlib-checkins mailing list
Matplotlib-checkins@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to