summaryrefslogtreecommitdiff
path: root/numpy/lib/twodim_base.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-02-24 11:04:26 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-02-24 11:04:26 +0000
commit4daf55160be6e0b8a4f6492d8a13beec673b6c11 (patch)
tree5a3478f9e5bc5034aca6315e2b070e9a55a50f41 /numpy/lib/twodim_base.py
parentb18d25b368aaee7f4617ed250e0201903fb42440 (diff)
downloadnumpy-4daf55160be6e0b8a4f6492d8a13beec673b6c11.tar.gz
Added kron and repmat
Diffstat (limited to 'numpy/lib/twodim_base.py')
-rw-r--r--numpy/lib/twodim_base.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/lib/twodim_base.py b/numpy/lib/twodim_base.py
index 9c5adcf6e..39a908268 100644
--- a/numpy/lib/twodim_base.py
+++ b/numpy/lib/twodim_base.py
@@ -104,7 +104,6 @@ def triu(m, k=0):
out = multiply((1-tri(m.shape[0], m.shape[1], k-1, m.dtype)),m)
return out
-
# borrowed from John Hunter and matplotlib
def vander(x, N=None):
"""