diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-02-24 11:04:26 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-02-24 11:04:26 +0000 |
commit | 4daf55160be6e0b8a4f6492d8a13beec673b6c11 (patch) | |
tree | 5a3478f9e5bc5034aca6315e2b070e9a55a50f41 /numpy/lib/twodim_base.py | |
parent | b18d25b368aaee7f4617ed250e0201903fb42440 (diff) | |
download | numpy-4daf55160be6e0b8a4f6492d8a13beec673b6c11.tar.gz |
Added kron and repmat
Diffstat (limited to 'numpy/lib/twodim_base.py')
-rw-r--r-- | numpy/lib/twodim_base.py | 1 |
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): """ |