Revision: 4009
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4009&view=rev
Author: astraw
Date: 2007-10-25 20:13:24 -0700 (Thu, 25 Oct 2007)
Log Message:
-----------
fix for numpy
Modified Paths:
--------------
trunk/py4science/examples/weave_examples_simple.py
Modified: trunk/py4science/examples/weave_examples_simple.py
===================================================================
--- trunk/py4science/examples/weave_examples_simple.py 2007-10-26 02:35:23 UTC (rev 4008)
+++ trunk/py4science/examples/weave_examples_simple.py 2007-10-26 03:13:24 UTC (rev 4009)
@@ -40,7 +40,7 @@
def main():
zz = N.zeros([10,10])
print 'tr(zz)=',trace(zz)
- oo = N.ones([4,4],N.Float)
+ oo = N.ones([4,4],N.float)
print 'tr(oo)=',trace(oo)
aa = rand(128,128)
print 'tr(aa)=',trace(aa)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|