diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-04-12 21:11:29 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-04-12 21:11:29 +0000 |
commit | 5534a9987fa9b916a4c035220a3fb488bd315753 (patch) | |
tree | 721373eeb2a630ba4f5b2b681c51acb8e026f446 /numpy/lib/shape_base.py | |
parent | 5326f8922066ad8e3adc27ef26b75fd6d4d2b895 (diff) | |
download | numpy-5534a9987fa9b916a4c035220a3fb488bd315753.tar.gz |
Fix Ticket #52
Diffstat (limited to 'numpy/lib/shape_base.py')
-rw-r--r-- | numpy/lib/shape_base.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/lib/shape_base.py b/numpy/lib/shape_base.py index 6ca25ac3c..2d2e6f337 100644 --- a/numpy/lib/shape_base.py +++ b/numpy/lib/shape_base.py @@ -544,6 +544,7 @@ def repmat(a, m, n): return c.reshape(rows, cols) +# TODO: figure out how to keep arrays the same def kron(a,b): """kronecker product of a and b |