|
From: <jr...@us...> - 2008-02-08 17:56:18
|
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.
|