|
From: <jd...@us...> - 2009-01-08 19:44:12
|
Revision: 6767
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6767&view=rev
Author: jdh2358
Date: 2009-01-08 19:44:07 +0000 (Thu, 08 Jan 2009)
Log Message:
-----------
enhanced tests and moved numpy method into pyx module
Modified Paths:
--------------
trunk/py4science/examples/pyrex/nnbf/nnbf.pyx
Modified: trunk/py4science/examples/pyrex/nnbf/nnbf.pyx
===================================================================
--- trunk/py4science/examples/pyrex/nnbf/nnbf.pyx 2009-01-08 19:42:15 UTC (rev 6766)
+++ trunk/py4science/examples/pyrex/nnbf/nnbf.pyx 2009-01-08 19:44:07 UTC (rev 6767)
@@ -86,9 +86,6 @@
cdef np.ndarray[double, ndim=1] pp
# avoid python array indexing in the inner loop
- #cdef np.ndarray[double, ndim=1] row
- cdef double * dataptr
- dataptr = <double*> self.data.data
if len(point)!=self.n:
raise ValueError('Expected a length %d vector'%self.n)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|